jssor list slider: pager item should disappear when loading in content container - jssor

For the jssor list slider, is it possible that the item in pager (thumb) moves to the big image container. Now, each time you see the content in big (left) container and the content (thumb) on pager (right).

Related

Is a way to control view of scrollable list to display component by 0.5 of other components in flutter?

I want to control scrollable list in a row, by display component/widget in a scrollable row by half and full of other component in a scrollable list as shown below .
Give each box more than half of the screen width. In this way, the first list item will cover more than half of the screen, and the next item will be half visible. You can give the width like this
MediaQuery.of(context).size.width * 0.6

Flutter - Split child item in horizontal scroll view

i would like to create a page like the image attached below in flutter tablet app. But currently i have no idea on how to split and move the remaining content to the next container when the content reach the end height of the device screen.

How to create horizontal list view with faded image by Flutter?

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.
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.
Finally, I published Package (flutter_faded_list) for designing this UI on the pub.dev website.

create expand collapse image when scroll listview

example
I want to create some applications with widget ListView. When you scrolling up, image at first index will be expanded, and if you scroll again, next image will be expanded again, and if you scrolling down, image will be collapsed again.
Is it possible to create this with flutter?

Facebook type ProgressBar on top of Listview

how to display and hide the progress bar on top of listview same as facebook in which loader display while only pull the listview toward bottom and the size of progressbar (loader) is set according to how much size produce by pulling the listview toward botttom?