[ListView] Tap status bar to scroll to the top not working
See original GitHub issueI have a TabBarIOS at the root. One of the tabs contains a NavigatorIOS, whose root is a simple ListView with content that extends past the bounds of the screen. I would expect to be able to tap on the status bar when scrolled all the way to the bottom to return to the top. This isn’t working, even when I explicitly set scrollsToTop={true} on the ListView (although it is supposed to be true by default)
Issue Analytics
- State:
- Created 8 years ago
- Comments:7 (3 by maintainers)
Top Results From Across the Web
Flutter iOS: taps on the status bar can't scroll to top
As a reference, in iOS native app development the scroll-to-top gesture has no effect if there is more than one scroll view on-screen...
Read more >ListView -> Scroll to top - MSDN - Microsoft
Forms framework does not support the behavior when tapping the time element in the status bar to scroll to the top.
Read more >scrolls_to_top | Flutter Package - Pub.dev
A dart package for working with scrolls-to-top iOS feature. ... or you need to distinguish the tap event in the status bar from...
Read more >ListView - Android Developers
android:footerDividersEnabled, When set to false, the ListView will not ... Position the scroll bar at the default position as determined by the system....
Read more >Flutter - Scroll Down to Bottom or Top of List in ListView
As you can see our FloatingActionButton is not working as no function is assigned to it in the onPressed field. First of all,...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found

We have to leave only a single ScrollViews with
scrollsToTop={true}, at last I figured out that a ListView is also a ScrollView. Took me long time to find out the problem.@Cordazar make CordazarScrollView that changes the default value and use it in your app / publish it to npm and if a lot of people really like it we can change the default in RN.