Skip to content

Instantly share code, notes, and snippets.

@MartinZikmund
Last active February 27, 2019 13:16
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 MartinZikmund/b0d61ef133575b570f7c1618cdc373b7 to your computer and use it in GitHub Desktop.
Save MartinZikmund/b0d61ef133575b570f7c1618cdc373b7 to your computer and use it in GitHub Desktop.
Default Grid spacing
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="*" />
<RowDefinition Height="*" />
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="*" />
<ColumnDefinition Width="*" />
</Grid.ColumnDefinitions>
<BoxView BackgroundColor="#f65d35" />
<BoxView BackgroundColor="#81bb05" Grid.Row="0" Grid.Column="1" />
<BoxView BackgroundColor="#04a5f0" Grid.Row="1" Grid.Column="0" />
<BoxView BackgroundColor="#ffba07" Grid.Row="1" Grid.Column="1" />
</Grid>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment