Skip to content

Instantly share code, notes, and snippets.

@dmoss18
Last active July 24, 2019 18:59
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 dmoss18/271251c778fbbc413285113d25205430 to your computer and use it in GitHub Desktop.
Save dmoss18/271251c778fbbc413285113d25205430 to your computer and use it in GitHub Desktop.
<grid>
<grid.ColumnDefinitions>
<grid.column width="0.25" />
<grid.column width="0.25" />
<grid.column width="0.5" />
</grid.ColumnDefinitions>
<grid.RowDefinitions>
<grid.Row Height="20px" />
</grid.RowDefinitions>
<Label1 Grid.Column="0" Grid.Row="0" Text="Colum1, Row1" />
<Label1 Grid.Column="1" Grid.Row="0" Text="Colum1, Row1" />
<Label1 Grid.Column="2" Grid.Row="0" Text="Colum1, Row1" />
</grid>
<FlexLayout Direction="Row" JustifyContent="SpaceBetween">
<StackLayout Orientation="Horizontal">
<Label ... />
<Label ... />
</StackLayout>
<Label ... />
</FlexLayout>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment