Romain Rastel
Romain Rastel
I think it's an issue with double precision. Can you test with the latest 0.5.0 preview? https://pub.dev/packages/flutter_staggered_grid_view/versions/0.5.0-dev.1 Also, you can try to fix it be setting a fixed width which...
@dzsonni do you still encounter this issue ?
It seems like you gave a `Column` an infinite height, I don't see why you need a `SingleChildScrollView` and a `Column` here. Why don't you use only a `MasonryGridView.count`?
There is a wiki to help you choose the right API for your needs: https://github.com/letsar/flutter_staggered_grid_view/wiki
Issue can support a fully explanation of what you want?
Can you provide a code sample I could just copy/paste and run?
Can you test with the latest 0.5.0 preview? https://pub.dev/packages/flutter_staggered_grid_view/versions/0.5.0-dev.1
Why don't you replace the SliverMasonryGrid upon a condition with your overlay?
You can add a padding for items with index 1 and 3 to achieve this I think: ```dart MasonryGridView.count( padding: const EdgeInsets.symmetric(vertical: 25, horizontal: 29), itemCount: categories.length, scrollDirection: Axis.horizontal, crossAxisCount:...
If your `MasonryGrid` scrolls horizontally, then the left column are the first indices. It starts in the top with the index 0.