Untitled
unknown
xml
2 years ago
809 B
1
Indexable
<ContentPage.Content> <StackLayout Margin="8,50,8,0" HorizontalOptions="FillAndExpand" VerticalOptions="FillAndExpand"> <!--Title page view--> <Label Text="Learn C#" FontSize="Title" HorizontalOptions="Start" VerticalOptions="Center"/> <!--List view for courses--> <ListView x:Name="coursesListView" ItemSelected="coursesListView_ItemSelected"> <ListView.ItemTemplate> <DataTemplate> <TextCell Text="{Binding Title}"/> </DataTemplate> </ListView.ItemTemplate> </ListView> </StackLayout> </ContentPage.Content>
Editor is loading...