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.

19 lines
709 B

  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <ContentPage
  3. x:Class="CircleViewerMaui.Activity"
  4. xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
  5. xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
  6. xmlns:d="http://schemas.microsoft.com/dotnet/2021/maui/design"
  7. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  8. xmlns:local="clr-namespace:CircleViewerMaui"
  9. mc:Ignorable="d">
  10. <ContentPage.Content>
  11. <Grid>
  12. <Label
  13. HorizontalOptions="Center"
  14. Text="Welcome to .NET MAUI!!!"
  15. TextColor="Purple"
  16. VerticalOptions="Center"/>
  17. </Grid>
  18. </ContentPage.Content>
  19. </ContentPage>