Skip to content

Instantly share code, notes, and snippets.

@FraukeN
Created June 3, 2017 10:07
Show Gist options
  • Save FraukeN/ce7f41b6e69335de2196cc124531903e to your computer and use it in GitHub Desktop.
Save FraukeN/ce7f41b6e69335de2196cc124531903e to your computer and use it in GitHub Desktop.
Timer Page Initial Layout
<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