Advertisement
Guest User

Untitled

a guest
Oct 26th, 2016
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.29 KB | None | 0 0
  1. <!-- main page grid -->
  2. <Grid RowSpacing="0">
  3. <Grid.RowDefinitions>
  4.  
  5. <RowDefinition Height="*" />
  6. <RowDefinition Height="50" />
  7. </Grid.RowDefinitions>
  8.  
  9. <!-- row background colors -->
  10.  
  11. <BoxView Grid.Row="1" Color="#3498db" />
  12. <BoxView Grid.Row="2" Color="#3498db" />
  13.  
  14.  
  15.  
  16. <!-- inner grid for button layouts -->
  17. <Grid Grid.Row="1" ColumnSpacing="30" HorizontalOptions="Center"
  18. RowSpacing="30" VerticalOptions="Center">
  19. <Grid.RowDefinitions>
  20. <RowDefinition Height="*" />
  21. <RowDefinition Height="*" />
  22. </Grid.RowDefinitions>
  23. <Grid.ColumnDefinitions>
  24. <ColumnDefinition Width="*" />
  25. <ColumnDefinition Width="*" />
  26. </Grid.ColumnDefinitions>
  27.  
  28. <!-- button images -->
  29.  
  30.  
  31. <StackLayout Grid.Row="0" Grid.Column="0" VerticalOptions="Center" HorizontalOptions="Center">
  32. <Image Source="ic_home_white_48dp.png" />
  33. <Label Text="Make an appointment" TextColor="White" />
  34. </StackLayout>
  35.  
  36.  
  37. <Image Grid.Row="0" Grid.Column="1" Source="ic_home_white_48dp.png" />
  38. <Image Grid.Row="1" Grid.Column="0" Source="ic_home_white_48dp.png" />
  39. <Image Grid.Row="1" Grid.Column="1" Source="ic_home_white_48dp.png" />
  40.  
  41.  
  42.  
  43. </Grid>
  44. </Grid>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement