Jaime Blasco

Results 113 comments of Jaime Blasco

I think this is the behavior he is describing. I am wondering the same. Would it be possible to do something like this? https://user-images.githubusercontent.com/19904063/119657954-e1bc8900-be2c-11eb-981b-969432944848.MP4

As @letsar say try to use automatic keep alive. In this comment https://github.com/letsar/flutter_staggered_grid_view/issues/15#issuecomment-706678027, I explain how to create a widget that using it inside StaggetredGridView, it should keep their state....

Thanks for the suggestion. Here is a code example that works without any changes needed. ```dart SliverStaggeredGrid.countBuilder( itemCount: 200, key: ObjectKey(columns), crossAxisCount: columns, mainAxisSpacing: 20, crossAxisSpacing: 10, itemBuilder: (BuildContext context,...

This was added in another PR! Thanks for the contribution

Working on it. Right now the only solution would be to change the background color of the previous route before the one is being pushed

Yes indeed @bierbaumtim has been doing amazing research on the topic. I am not completely familiar with BlendMode but I think using lighten and darken would be a better choice....

Which version of the package are you using? Does using a TextEditingController with a Textfield inside a StatefulController solves your problem?

Okey, I will take a look at the issue. If you have some reproducible code of the issue it will easier for me to find the problem

Well, as you can see this I can't reproduce this code. Try to make a small example of the issue that I can reproduce.