Disable swipe gesture on TabBar #591
-
I'd like to be able to disable the swipe gesture on the |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 5 replies
-
The So you should be able to add a horizontal ScrollView to a tab in the |
Beta Was this translation helpful? Give feedback.
The
TabBar
on Android maps to the ViewPager. This widget does support horizontally scrolling content. I know this because I investigated it when I added right-to-left (RTL) language support. Android, instead of adding RTL support to the ViewPager, decided to write a whole new widget called ViewPager2. I was going to move over to ViewPager2 but found out that it doesn’t support horizontally scrolling content. I didn’t want to lose this functionality, so theTabBar
maps to the ViewPager for LTR and ViewPager2 for RTL languages.So you should be able to add a horizontal ScrollView to a tab in the
TabBar
, for example.