Skip to content

Instantly share code, notes, and snippets.

@jfversluis
Created June 4, 2020 07:23
Embed
What would you like to do?
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