Geoffrey Marizy
Geoffrey Marizy
@chooyan-eng Did you succeed to reproduce the bug with .heic on Android device ?
Better than sharing my code, I adapted the sample from readme to illustrate the problem. As you click 'REMOVE LAST' button, you can see in console that remaining _Items did...
This is with setState: ```dart import 'dart:math'; import 'package:flutter/material.dart'; import 'package:flutter_reorderable_grid_view/widgets/widgets.dart'; final _gridViewKey = GlobalKey(); final _reorderableBuilderKey = GlobalKey(); class MyApp extends StatefulWidget { const MyApp({Key? key}) : super(key: key);...
@karvulf Thank you for your fast answer. I removed the globalkey and scrollcontroller from the build method but the issue persist. This a the sample from the readme, with only...
Enjoy your vacation then, I will wait no problem. Also I tested with `^5.0.0-dev.7` and situation is even worse, there is more rebuild than with v4.
Dev version 83 is flawed, see https://github.com/FirebaseExtended/firestoreodm-flutter/issues/7 Try with latest versions: ``` cloud_firestore: 4.15.8 cloud_firestore_odm: 1.0.0-dev.84 cloud_firestore_odm_generator: 1.0.0-dev.85 ``` You can test with those versions, and close this issue yourself...
See https://github.com/FirebaseExtended/firestoreodm-flutter/issues/7 Everything works fine with those versions for me: ``` cloud_firestore: 4.15.8 cloud_firestore_odm: 1.0.0-dev.84 cloud_firestore_odm_generator: 1.0.0-dev.85 ```