Skip to content

Instantly share code, notes, and snippets.

@Char0394
Created February 13, 2018 11:46
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Char0394/9dfe3fb0beaa45fa2c80353e3b07f137 to your computer and use it in GitHub Desktop.
Save Char0394/9dfe3fb0beaa45fa2c80353e3b07f137 to your computer and use it in GitHub Desktop.
<?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:local="clr-namespace:GridSample"
x:Class="GridSample.GridSamplePage">
<Grid Padding="20" VerticalOptions="CenterAndExpand">
<Grid.RowDefinitions>
<RowDefinition Height="40" />
<RowDefinition Height="40" />
<RowDefinition Height="40" />
<RowDefinition Height="40" />
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="5*" />
<ColumnDefinition Width="5*" />
</Grid.ColumnDefinitions>
<Entry Grid.Row="0" Grid.Column="0" Grid.ColumnSpan="2" Placeholder="UserName" HorizontalOptions="FillAndExpand"/>
<Entry Grid.Row="1" Grid.Column="0" Grid.ColumnSpan="2" Placeholder="Password" HorizontalOptions="FillAndExpand"/>
<Entry Grid.Row="2" Grid.Column="0" Placeholder="NickName" HorizontalOptions="FillAndExpand"/>
<Entry Grid.Row="2" Grid.Column="1" Placeholder="Phone" HorizontalOptions="FillAndExpand"/>
<Button Grid.Row="3" Grid.Column="0" Grid.ColumnSpan="2" HorizontalOptions="FillAndExpand" Text="Register" TextColor="White" BackgroundColor="Black"/>
</Grid>
</ContentPage>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment