Guest User

Untitled

a guest
Feb 18th, 2019
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.47 KB | None | 0 0
  1. <ListView x:Name="navigationDrawerList"
  2. RowHeight="65"
  3. SeparatorVisibility="Default"
  4. Footer=""
  5. BackgroundColor="White"
  6. ItemSelected="OnMenuItemSelected">
  7.  
  8. <ListView.ItemTemplate>
  9. <DataTemplate>
  10.  
  11.  
  12. <custom:CustomViewCell SelectedItemBackgroundColor="White">
  13.  
  14. <ViewCell.View>
  15.  
  16. <!-- Main design for our menu items -->
  17. <StackLayout VerticalOptions="FillAndExpand"
  18. Orientation="Horizontal"
  19. Padding="20,10,0,10"
  20. Spacing="20">
  21.  
  22. <Image Source="{Binding Icon}"
  23. WidthRequest="40"
  24. HeightRequest="40"
  25. VerticalOptions="Start" />
  26.  
  27. <Label Text="{Binding Title}"
  28. FontSize="Small"
  29. VerticalOptions="Center"
  30. TextColor="Black"/>
  31. </StackLayout>
  32. </ViewCell.View>
  33. </custom:CustomViewCell>
  34. </DataTemplate>
  35. </ListView.ItemTemplate>
  36. </ListView>
Add Comment
Please, Sign In to add comment