expandable_page_view
expandable_page_view copied to clipboard
Hi, I am not sure this issue is related to your library. But as I am not sure, I will share it here. I have described the issue here: https://stackoverflow.com/questions/74053907/renderviewport-does-not-support-returning-intrinsic-dimensions-with-pageview...
Hi everyone, I am using this library But i don't know how to fix height of pageview by item in list child Example I want to fix height of pageview...
https://github.com/Limbou/expandable_page_view/assets/33316685/ab1a6880-38e4-447a-8831-11803fb83743 code from video: https://github.com/adimshev/expandable_page_view_bug_demo Tested for web and iOS The error is reproduced only when viewportFaction < 1 `Flutter 3.13.6 • channel stable • https://github.com/flutter/flutter.git Framework • revision ead455963c...
Sometimes this line craches on the page init : _currentPage = _pageController.initialPage.clamp(0, _sizes.length - 1); maybe we should add a control on the size lenght and do not clamp ?
The package works very well. However, when I define a `viewportFraction` via controller, the size calculation works only for the first child. The others are visible, but resize only when...
Should be a fix to [Issue#53](https://github.com/Limbou/expandable_page_view/issues/53) It just makes sure, that `clamp` get's called on a valid range otherwise it might just throw an error like the following: ``` Invalid...
Seems like the correct calculated size for the second page was discarded for no reason and overwritten with the (nonexistent in most cases) estimated size. - Fixes #60 - Probably...
The height of the first page is detected properly, but when scrolling to the second page, as soon as the halfway point is reached, the page collapses to a height...
In ExpandablePageView when I am trying to set value of scrollDirection to Axis.Vertical my child view is not visible. Here i am trying to play list of videos so I...