I am using tabbed navigation for my nativescript app. I have a playground sample here https://play.nativescript.org/?template=play-ng&id=WKlZDF&v=6
On the second tab, I have a list of tasks that is longer than most screens can display so it is wrapped in a <ScrollView>
. The scrolling works as expected except when you get to the bottom. The final element is partially hidden by the <BottomNavigation>
. If you drag up on the screen you can see the rest of the element but the second you release the screen it slides back down behind the <BottomNavigation>
.
You can see what I am talking about in the playground or in the screenshot below. Does anyone know how to correct this? I thought about just adding a bunch of padding at the bottom but that seems super hackey.