Skip to content

Instantly share code, notes, and snippets.

@jfversluis
Created June 4, 2020 07:23
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 jfversluis/dd9be5edd27dba844a172d8a2eedf67a to your computer and use it in GitHub Desktop.
Save jfversluis/dd9be5edd27dba844a172d8a2eedf67a to your computer and use it in GitHub Desktop.
Example of a Xamarin.Forms Grid definition
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="1*" />
<ColumnDefinition Width="2*" />
<ColumnDefinition Width="Auto" />
<ColumnDefinition Width="*" />
<ColumnDefinition Width="300" />
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition Height="1*" />
<RowDefinition Height="Auto" />
<RowDefinition Height="25" />
<RowDefinition Height= "14" />
<RowDefinition Height="20" />
</Grid.RowDefinitions>
</Grid>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment