AssignmentSummary.xaml 501 B

12345678910111213
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <ContentView xmlns="http://xamarin.com/schemas/2014/forms"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
  4. x:Class="comal.timesheets.AssignmentSummary">
  5. <ContentPage.Content>
  6. <StackLayout>
  7. <Label Text="Hello, world!"
  8. VerticalOptions="CenterAndExpand"
  9. HorizontalOptions="CenterAndExpand" />
  10. </StackLayout>
  11. </ContentPage.Content>
  12. </ContentView>