'how to create horizontal list view by flutter and similar this ui?

I need a horizontal list view in the flutter , that according to the image below, the first item is empty and the image is visible in the background, when the second item starts scrolling, the background image disappears and when the item returns to its place , The image also returns to the original state.

enter image description here



Solution 1:[1]

You will need some code here. The vertical listview you can get with the SingleChildScroolView changing the axis to vertical and placing a Column inside. To the empty space on last item, place a Sizedbox as last widget inside Column. Place a ScrollController on the SingleChildScroolView with a listener, and when the controller reach the maximum just fade in the background image. Its not hard, just need some code.

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Manishyadav