29 lines
1.1 KiB
XML
29 lines
1.1 KiB
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" xmlns:views="clr-namespace:MobileApp1.Views"
|
|
x:Class="MobileApp1.Views.HomePage"
|
|
Title="Home">
|
|
<ContentPage.Content>
|
|
<ScrollView>
|
|
<StackLayout Margin="20">
|
|
<views:CompanyHeaderView />
|
|
|
|
<Label Text="Welcome to XYZ" FontSize="Body" />
|
|
<Label x:Name="label1" Text="Hi, John." />
|
|
<Label Text="" Margin="0, 0, 0, 10" />
|
|
|
|
<Label Text="Notices" FontSize="Body" />
|
|
<Label x:Name="label2" Text="You have no notices" />
|
|
<Label Text="" Margin="0, 0, 0, 10" />
|
|
|
|
<Label Text="Messages" FontSize="Body" />
|
|
<Label x:Name="label3" Text="You have no messages" />
|
|
<Label Text="" Margin="0, 0, 0, 10" />
|
|
|
|
<Button x:Name="button1" Margin="0, 20, 0, 0" Text="Let's Get Started" Clicked="button1_Clicked" ></Button>
|
|
|
|
</StackLayout>
|
|
</ScrollView>
|
|
</ContentPage.Content>
|
|
</ContentPage> |