School Commit Init
This commit is contained in:
@@ -0,0 +1,49 @@
|
||||
<?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>
|
||||
Reference in New Issue
Block a user