Skip to content

Instantly share code, notes, and snippets.

@ytabuchi
Last active December 30, 2016 08:26
Show Gist options
  • Save ytabuchi/3df9cb39b4ed2266a565de50d039feb0 to your computer and use it in GitHub Desktop.
Save ytabuchi/3df9cb39b4ed2266a565de50d039feb0 to your computer and use it in GitHub Desktop.
Grid Layout of Xamarin.Forms sample
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="2*" />
<RowDefinition Height="*" />
<RowDefinition Height="200" />
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="Auto" />
<ColumnDefinition Width="*" />
</Grid.ColumnDefinitions>
</Grid>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment