Advertisement
Guest User

Untitled

a guest
Aug 19th, 2019
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.98 KB | None | 0 0
  1. <StackLayout Orientation="Vertical">
  2. <Frame BackgroundColor="DarkOrange" HeightRequest="100" Margin="10,10,10,20" BorderColor="Black" HasShadow="True">
  3.  
  4. </Frame>
  5. <ListView x:Name="ListView" SeparatorVisibility="Default" SeparatorColor="Red" IsPullToRefreshEnabled="True"
  6.  
  7. >
  8. <ListView.ItemTemplate>
  9. <DataTemplate>
  10. <ViewCell>
  11. <StackLayout Orientation="Horizontal">
  12. <Image Source="{Binding Icon}"/>
  13. <Label Text="{Binding Name}" FontAttributes="Bold" VerticalTextAlignment="Center"
  14. HorizontalOptions="StartAndExpand"/>
  15. <Image Source="{Binding RightArrowIcon}" HorizontalOptions="End"/>
  16. </StackLayout>
  17. </ViewCell>
  18.  
  19. </DataTemplate>
  20. </ListView.ItemTemplate>
  21.  
  22. </ListView>
  23. </StackLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement