Last active
December 30, 2016 08:26
-
-
Save ytabuchi/3df9cb39b4ed2266a565de50d039feb0 to your computer and use it in GitHub Desktop.
Grid Layout of Xamarin.Forms sample
This file contains 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
<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