Hello good afternoon, I have a problem since I updated to the most current versions of Xamarin.Forms and Telerik.
I had a ScrollView that was the parent of a RadTabView, and when switching between Tab items it updated as heights normally.
But after the update it records only the first height of the content of the first item and when I switch to the other items the scroll does not work because the height of the Tab does not change and he is unable to make a difference to calculate how much will roll.
EX:
<ScrollView x:Name="s"
BackgroundColor="Azure">
<telerikPrimitives:RadTabView x:Name="tabView"
BackgroundColor="Blue"
IsContentSwipingEnabled="False">
<telerikPrimitives:RadTabView.Items>
<telerikPrimitives:TabViewItem HeaderText="Home">
<telerikPrimitives:TabViewItem.Content>
<StackLayout x:Name="sta"
BackgroundColor="Aquamarine">
<StackLayout.GestureRecognizers>
<TapGestureRecognizer Tapped="st1" />
</StackLayout.GestureRecognizers>
<Label Margin="10" Text="This is the content of the Home tabdfoihdsoifhsoidhfoisdhfoishfois"
HeightRequest="50"
BackgroundColor="Red"/>
<Label Margin="10" Text="This is the content of the Home tabdfoihdsoifhsoidhfoisdhfoishfois"
HeightRequest="50"
BackgroundColor="Red"/>
</StackLayout>
</telerikPrimitives:TabViewItem.Content>
</telerikPrimitives:TabViewItem>
<telerikPrimitives:TabViewItem HeaderText="Folder">
<telerikPrimitives:TabViewItem.Content>
<StackLayout x:Name="stb"
BackgroundColor="Firebrick">
<StackLayout.GestureRecognizers>
<TapGestureRecognizer Tapped="st2" />
</StackLayout.GestureRecognizers>
<Label Margin="10" Text="This is the content of the Home tabdfoihdsoifhsoidhfoisdhfoishfois"
HeightRequest="50"
BackgroundColor="Red"/>
<Label Margin="10" Text="This is the content of the Home tabdfoihdsoifhsoidhfoisdhfoishfois"
HeightRequest="50"
BackgroundColor="Red"/>
<Label Margin="10" Text="This is the content of the Home tabdfoihdsoifhsoidhfoisdhfoishfois"
HeightRequest="50"
BackgroundColor="Red"/>
<Label Margin="10" Text="This is the content of the Home tabdfoihdsoifhsoidhfoisdhfoishfois"
HeightRequest="50"
BackgroundColor="Red"/>
<Label Margin="10" Text="This is the content of the Home tabdfoihdsoifhsoidhfoisdhfoishfois"
HeightRequest="50"
BackgroundColor="Red"/>
<Label Margin="10" Text="This is the content of the Home tabdfoihdsoifhsoidhfoisdhfoishfois"
HeightRequest="50"
BackgroundColor="Red"/>
</StackLayout>
</telerikPrimitives:TabViewItem.Content>
</telerikPrimitives:TabViewItem>
<telerikPrimitives:TabViewItem HeaderText="View">
<telerikPrimitives:TabViewItem.Content>
<StackLayout x:Name="stc"
BackgroundColor="DodgerBlue">
<StackLayout.GestureRecognizers>
<TapGestureRecognizer Tapped="st3" />
</StackLayout.GestureRecognizers>
<Label Margin="10" Text="This is the content of the Home tabdfoihdsoifhsoidhfoisdhfoishfois"
HeightRequest="50"
BackgroundColor="Red"/>
<Label Margin="10" Text="This is the content of the Home tabdfoihdsoifhsoidhfoisdhfoishfois"
HeightRequest="50"
BackgroundColor="Red"/>
<Label Margin="10" Text="This is the content of the Home tabdfoihdsoifhsoidhfoisdhfoishfois"
HeightRequest="50"
BackgroundColor="Red"/>
<Label Margin="10" Text="This is the content of the Home tabdfoihdsoifhsoidhfoisdhfoishfois"
HeightRequest="50"
BackgroundColor="Red"/>
<Label Margin="10" Text="This is the content of the Home tabdfoihdsoifhsoidhfoisdhfoishfois"
HeightRequest="50"
BackgroundColor="Red"/>
<Label Margin="10" Text="This is the content of the Home tabdfoihdsoifhsoidhfoisdhfoishfois"
HeightRequest="50"
BackgroundColor="Red"/>
<Label Margin="10" Text="This is the content of the Home tabdfoihdsoifhsoidhfoisdhfoishfois"
HeightRequest="50"
BackgroundColor="Red"/>
<Label Margin="10" Text="This is the content of the Home tabdfoihdsoifhsoidhfoisdhfoishfois"
HeightRequest="50"
BackgroundColor="Red"/>
<Label Margin="10" Text="This is the content of the Home tabdfoihdsoifhsoidhfoisdhfoishfois"
HeightRequest="50"
BackgroundColor="Red"/>
<Label Margin="10" Text="This is the content of the Home tabdfoihdsoifhsoidhfoisdhfoishfois"
HeightRequest="50"
BackgroundColor="Red"/>
<Label Margin="10" Text="This is the content of the Home tabdfoihdsoifhsoidhfoisdhfoishfois"
HeightRequest="50"
BackgroundColor="Red"/>
<Label Margin="10" Text="This is the content of the Home tabdfoihdsoifhsoidhfoisdhfoishfois"
HeightRequest="50"
BackgroundColor="Red"/>
<Label Margin="10" Text="This is the content of the Home tabdfoihdsoifhsoidhfoisdhfoishfois"
HeightRequest="50"
BackgroundColor="Red"/>
<Label Margin="10" Text="This is the content of the Home tabdfoihdsoifhsoidhfoisdhfoishfois"
HeightRequest="50"
BackgroundColor="Red"/>
<Label Margin="10" Text="This is the content of the Home tabdfoihdsoifhsoidhfoisdhfoishfois"
HeightRequest="50"
BackgroundColor="Red"/>
</StackLayout>
</telerikPrimitives:TabViewItem.Content>
</telerikPrimitives:TabViewItem>
</telerikPrimitives:RadTabView.Items>
</telerikPrimitives:RadTabView>
</ScrollView>
Ao mudar para o terceiro item da Tab ele não entende que deve fazer scroll.
Porf se alguém puder ajudar, agradeço.