You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

41 lines
1.4 KiB

1 year ago
  1. <?xml version="1.0" encoding="utf-8" ?>
  2. <ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
  4. x:Class="GMCabsDriverAssistantSolution.MainPage">
  5. <ScrollView>
  6. <VerticalStackLayout
  7. Spacing="25"
  8. Padding="30,0"
  9. VerticalOptions="Center">
  10. <Image
  11. Source="dotnet_bot.png"
  12. SemanticProperties.Description="Cute dot net bot waving hi to you!"
  13. HeightRequest="200"
  14. HorizontalOptions="Center" />
  15. <Label
  16. Text="Hello, World!"
  17. SemanticProperties.HeadingLevel="Level1"
  18. FontSize="32"
  19. HorizontalOptions="Center" />
  20. <Label
  21. Text="Welcome to .NET Multi-platform App UI"
  22. SemanticProperties.HeadingLevel="Level2"
  23. SemanticProperties.Description="Welcome to dot net Multi platform App U I"
  24. FontSize="18"
  25. HorizontalOptions="Center" />
  26. <Button
  27. x:Name="CounterBtn"
  28. Text="Click me"
  29. SemanticProperties.Hint="Counts the number of times you click"
  30. Clicked="OnCounterClicked"
  31. HorizontalOptions="Center" />
  32. </VerticalStackLayout>
  33. </ScrollView>
  34. </ContentPage>