50 lines
1.5 KiB
XML
50 lines
1.5 KiB
XML
<?xml version="1.0" encoding="utf-8" ?>
|
|
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
|
x:Class="TechTitans.Views.MainPage">
|
|
|
|
|
|
<ScrollView>
|
|
<VerticalStackLayout
|
|
Padding="30,0"
|
|
Spacing="25">
|
|
<Image
|
|
Source="retarded_logo.png"
|
|
HeightRequest="185"
|
|
Aspect="AspectFit"
|
|
/>
|
|
|
|
<Label
|
|
Text="Coxify"
|
|
Style="{StaticResource Headline}"
|
|
SemanticProperties.HeadingLevel="Level1"
|
|
/>
|
|
<Button
|
|
x:Name="UserBtn"
|
|
Text="User View"
|
|
Clicked="OnUserCLicked"
|
|
HorizontalOptions="Fill"
|
|
/>
|
|
<Button
|
|
x:Name="ArtistBtn"
|
|
Text="Artist View"
|
|
Clicked="OnArtistClicked"
|
|
HorizontalOptions="Fill"
|
|
/>
|
|
<Button
|
|
x:Name="AnaylstBtn"
|
|
Text="Analyst View"
|
|
Clicked="OnAnalystClicked"
|
|
HorizontalOptions="Fill"
|
|
/>
|
|
<Button
|
|
x:Name="EndOfYearRecapBtn"
|
|
Text="End Of Year Recap View"
|
|
Clicked="OnEndOfYearRecapClicked"
|
|
HorizontalOptions="Fill"
|
|
/>
|
|
</VerticalStackLayout>
|
|
</ScrollView>
|
|
|
|
</ContentPage>
|