-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMainPage.xaml
More file actions
18 lines (17 loc) · 1.02 KB
/
Copy pathMainPage.xaml
File metadata and controls
18 lines (17 loc) · 1.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?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:d="http://xamarin.com/schemas/2014/forms/design"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"
x:Class="MBTA.MainPage">
<StackLayout BackgroundColor="Green">
<!-- Place new controls here -->
<Label Text="MBTA" FontSize="Header"
HorizontalOptions="Center"
VerticalOptions="CenterAndExpand" TextColor="White" x:Name="home"/>
<Button Text="Schedules" x:Name="Schedules" BackgroundColor="DarkOliveGreen" Clicked="Schedules_Clicked"></Button>
<Button Text="Fares" x:Name="Fares" BackgroundColor="DarkOliveGreen" Clicked="Fares_Clicked"></Button>
<Button Text="Feedback" x:Name="Feedback" BackgroundColor="DarkOliveGreen" Clicked="Feedback_Clicked"></Button>
</StackLayout>
</ContentPage>