Hello,
I have a SfTabView with 3 tabs. Each tab has content that goes over the screen size. Each tab has different controls such as Labels and Frames, data is loaded async.
The scroll works on each tab but it doesn't scroll all the way down. Is there a way to solve this? To me it seems like the ScrollView is not updating the height of the content once it's loaded. I am using MVVM.
<tabView:SfTabItem Header="Detail" BackgroundColor="{StaticResource White}">
<tabView:SfTabItem.Content>
<ScrollView x:Name="PageScroll" VerticalOptions="StartAndExpand">
<!-- Other content loaded async that binds to Labels, Frames, etc. -->
</ScrollView>
</tabView>
</tabView:SfTabItem>