22 lines
779 B
XML
22 lines
779 B
XML
<?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"
|
|
xmlns:views="clr-namespace:MobileApp1.Views"
|
|
Title="My Stuff">
|
|
<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> |