demo-xf-app-1a/MobileApp1/Views/MyStuffPage.xaml

22 lines
779 B
Plaintext
Raw Normal View History

2021-08-02 21:49:48 +00:00
<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="MobileApp1.Views.MyStuffPage"
2021-08-02 21:49:48 +00:00
xmlns:views="clr-namespace:MobileApp1.Views"
Title="My Stuff">
2021-08-02 21:49:48 +00:00
<ContentPage.Content>
<StackLayout Margin="20">
<views:CompanyHeaderView />
<StackLayout HorizontalOptions="Fill">
<ScrollView>
<StackLayout>
<Label x:Name="label1" Text="" Margin="0, 0, 0, 20" FontSize="Body" />
</StackLayout>
</ScrollView>
</StackLayout>
</StackLayout>
</ContentPage.Content>
</ContentPage>