Romain Rastel
Romain Rastel
Oh I thought you were, since your comments are very well written! Yes you're right, it was my technical view of the package which led me to think that postpone...
Didn't think about that but yeah it would be great!
Hi Jimmy 🙂. It's probably because of Repaint boundary. Try to set addRepaintBoundaries to false. I will look further later if it's not that.
Ok, so that's because the RepaintBoundary as I said, but if your GridView is scrollable, it will not work as you expect. During the scroll, all items will change positions,...
Yeah I didn't designed it to work under scrollable widgets while it could be quite interesting. I don't know how to handle that for the moment but maybe there is...
Only `StaggeredGrid` is not suitable to use as an infinite grid view for performance reasons. You can wrap it under a `SliverToBoxAdapter` inside a `CustomScrollView`, but take care of the...
Hi, when a **ScrollController** is attached to multiple **scrollable** elements, the **position** property returns the above exception. For now what you want to achieve is not possible with this library...
Did'nt test it but I think only one `ScrollController` will work. In your case, maybe you can use a multiple `Parallax.outside` in a `Stack `behind only one `SingleChildScrollView`?
Yes you can totally do that! The only thing you have to change here it's the height of your container 😉 . It have to be bigger than the `mainAxisExtent`....
In the case of a **SingleChildScrollView** the **Parallax.inside** does not work (I think it's because the element position to the viewport does not seem to change). You should use a...