flutter_parallax
flutter_parallax copied to clipboard
A Flutter widget that moves according to a scroll controller.
I am getting this Error: ``` The following _CastError was thrown during performLayout(): Null check operator used on a null value The relevant error-causing widget was Parallax When the exception...
Hey, first thanks for this library. I'm using it for card's image inside a vertical `ListView` and my code seems standard: ```dart return Stack( children: [ SizedBox( height: height, width:...
I am getting this exception.
hey thanks for your lib. but it not work on web
I'm trying to use Parallax.Inside for a list with Images in a container. These are network images passed into a container, the widget works and displays fine but I'm constantly...
The picture is not fully displayed
I get an "Rect argument contained a NaN value" error when using Parallax.outside on a ListView that happens to be in full-view. It's an easy fix, just add ``` &&...
I'm interested in using your Parallax.custom method to create a slow pan of a background image driven by an external variable. You have examples for .inside and .outside but nothing...
**Is it possible to implement parallax without the list view?** I am trying to implement the parallax in https://github.com/iminyourhouse-turnaround as an exercise. When I use the `Parallax.inside` or `Parallax.outside` methods,...
Instead of using images I am using containers with background images. Is there a way to get parallax effect on that. I modified your sample code to test it out....