-
Notifications
You must be signed in to change notification settings - Fork 5
Description
Hi,
if i put your segmentedcontrol inside a ScrollView, TabButton.Text is not visible (or has the same color of PrimaryColor .... i don't know)
XF version: latest 4.5.x
XAML that works:
<ContentPage.Content> <Grid> <StackLayout> <xfsc:SegmentedControl HorizontalOptions="CenterAndExpand" PrimaryColor="Red" SecondaryColor="Yellow" TabButtonsSource="{Binding MeasuresTypes}" VerticalOptions="CenterAndExpand" /> </StackLayout> </Grid> </ContentPage.Content>
XAML that dont works:
<ContentPage.Content> <Grid> <ScrollView> <StackLayout> <xfsc:SegmentedControl HorizontalOptions="CenterAndExpand" PrimaryColor="Red" SecondaryColor="Yellow" TabButtonsSource="{Binding MeasuresTypes}" VerticalOptions="CenterAndExpand" /> </StackLayout> </ScrollView> </Grid> </ContentPage.Content>

