-
Notifications
You must be signed in to change notification settings - Fork 20
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Bug in 3.2.0 #19
Comments
@ozzy1873 |
@toshiaki-h was this caused by #18? Could you share a runnable example that reproduces the problem? |
Thanks @jpnurmi. Here is sample code.
|
Thanks, I was able to reproduce the issue after adding an extra |
Added transition sample for issue #19.
I can confirm that the bug is fixed in 3.2.1. Thanks! |
A bug was introduced in 3.2.0.
SplitView( viewMode: SplitViewMode.Vertical, controller: SplitViewController(weights: [0.35]), gripColorActive: AppColors.primaryAccent, indicator: const SplitIndicator(viewMode: SplitViewMode.Vertical), activeIndicator: const SplitIndicator( viewMode: SplitViewMode.Vertical, isActive: true, ), children: [ _buildMap(), PageView( physics: const NeverScrollableScrollPhysics(), onPageChanged: _onPageChanged, controller: pageController, children: [summary, gps, hr, cad, pwr], ), ]);
When the page is initially displayed, the SplitView works normally. However, once the PageView is switched to a different page, the SplitView gripColorActive no longer displays and the drag gesture becomes slow and jittery.
Switching back to version 3.1.0 fixes this problem.
The text was updated successfully, but these errors were encountered: