Skip to content

Instantly share code, notes, and snippets.

@sthewissen
Created June 9, 2016 19:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sthewissen/657760e02ad528a270c52d9fbdf93102 to your computer and use it in GitHub Desktop.
Save sthewissen/657760e02ad528a270c52d9fbdf93102 to your computer and use it in GitHub Desktop.
<?xml version="1.0" encoding="UTF-8"?>
<ContentPage Title="Login" xmlns="http://xamarin.com/schemas/2014/forms" xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" x:Class="MyProject.LoginPage">
<Grid Padding="20" HorizontalOptions="CenterAndExpand" AutomationId="LoginPageIdentifier">
<Entry AutomationId="FullNameTextField" Keyboard="Text" Text="{Binding Fullname}" />
<Entry AutomationId="EmailTextField" Keyboard="Email" Text="{Binding Email}" />
<Button AutomationId="SignInButton" Text="Send" Command="{Binding LoginCommand}" />
</Grid>
</ContentPage>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment