exprollable_page_view
exprollable_page_view copied to clipboard
Yet another PageView widget that expands its viewport as it scrolls. Exprollable is a coined word combining the words expandable and scrollable.
I got a case where I need to use keyboard inside PageView, initialInset: const ViewportInset.fractional(0.9), The pages are dynamically generated, at least 1 page will be build, but while there's...
Is it possible to 1. dismiss by tapping the top inset 2. enlarge(expand) the card by tapping the card using ModalExprollableRouteBuilder. Navigator.of(context).push( ModalExprollableRouteBuilder( pageBuilder: (context, _, __) => ExprollablePageView(...), ),...
If you use the Books app on an iPad, you will see that in Landscape mode, it never goes full screen and the UI adapts so that there is more...
I noticed that when you are using the `showModalExprollable` function, the "grow on scroll" animation snaps to `ViewportInset.expanded` when on a device without touch or on web. This has been...
### Discussed in https://github.com/fujidaiti/exprollable_page_view/discussions/43 Originally posted by **VeskoDev** June 14, 2023 First of all, I have to say that the package works perfectly, but what I need is a scroll...
I fond that `AlwaysFillViewportPageView` widget can be replaced with the original `PageView` with `OverflowBox` as follows. It's much more simpler than the current implementation and doesn't require copying and pasting...