Eu defini ItemTemplate em CollectionView - com muitos rótulos no itemTemplate.
Espero poder rolar e ver todos os rótulos e foi isso que aconteceu
no Windows quando eu o executei
mas no Android isso não aconteceu - não consigo ver o pergaminho e não
encontro a razão para isso
Código:
<CollectionView
ItemsSource="{Binding MyList}"
VerticalOptions="FillAndExpand">
<CollectionView.ItemTemplate>
<DataTemplate x:DataType="models:MyModels">
<Border StrokeShape="RoundRectangle 24" HeightRequest="300" StrokeThickness="1" BackgroundColor="White" >
<Grid Margin="0,5,0,5" RowDefinitions="6*,2*,Auto" >
<ScrollView>
<VerticalStackLayout Padding="5" Spacing="5" >
<Lable Text="text1" />
<Lable Text="text1" />
<Lable Text="text1" />
<Lable Text="text1" />
<Lable Text="text1" />
<Lable Text="text1" />
<Lable Text="text1" />
<Lable Text="text1" />
<Lable Text="text1" />
<Lable Text="text1" />
<Lable Text="text1" />
<Lable Text="text1" />
<Lable Text="text1" />
<Lable Text="text1" />
<Lable Text="text1" />
<Lable Text="text1" />
<Lable Text="text1" />
<Lable Text="text1" />
<Lable Text="text1" />
<Lable Text="text1" />
<Lable Text="text1" />
<Lable Text="text1" />
<Lable Text="text1" />
<Lable Text="text1" />
<Lable Text="text1" />
<Lable Text="text1" />
</VerticalStackLayout>
</ScrollView>
</Grid>
</Border>
</DataTemplate>
</CollectionView.ItemTemplate>