Created
June 3, 2017 10:07
-
-
Save FraukeN/ce7f41b6e69335de2196cc124531903e to your computer and use it in GitHub Desktop.
Timer Page Initial Layout
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms" | |
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" | |
x:Class="ProjectTimer.Views.TimerPage"> | |
<StackLayout> | |
<Picker ItemsSource="{Binding ProjectNames}"/> | |
<Label Text="{Binding Duration}" | |
HorizontalOptions="Center" | |
FontSize="48"/> | |
<Button Text="{Binding ButtonText}" Command="{Binding TimerCommand}"/> | |
</StackLayout> | |
</ContentPage> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment