The text inside the frame label is not shown in the UI. Please guide
<ListView HeightRequest="800" IsVisible="True" ItemsSource="{Binding Answers, Mode=TwoWay}" SelectedItem="{Binding SelectedAnswer, Mode=TwoWay}" SelectionMode="Single" SeparatorVisibility="None" WidthRequest="800"> <ListView.ItemTemplate> <DataTemplate> <ViewCell> <Grid Padding="2"> <Grid.RowDefinitions> <RowDefinition Height="Auto" /> <RowDefinition Height="*" /> </Grid.RowDefinitions> <Frame Grid.Row="0" OutlineColor="#707070"> <Frame.Content> <Label HorizontalOptions="FillAndExpand" HorizontalTextAlignment="Center" Text="{Binding}" VerticalOptions="FillAndExpand" /> </Frame.Content> </Frame> </Grid> </ViewCell> </DataTemplate> </ListView.ItemTemplate> </ListView>
↧
label text is not shown in the listview frame
↧