Last active
July 24, 2019 18:59
-
-
Save dmoss18/271251c778fbbc413285113d25205430 to your computer and use it in GitHub Desktop.
This file contains hidden or 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.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