Skip to content

Instantly share code, notes, and snippets.

@Samirgc
Created June 23, 2018 13:10
<ContentPage.Content>
<Grid>
<Grid.RowDefinitions>
<RowDefinition/>
<RowDefinition/>
<RowDefinition/>
<RowDefinition/>
</Grid.RowDefinitions>
<Image x:Name="MyImage" Grid.Row="0" Margin="24"/>
<ActivityIndicator x:Name="MyActivityIndicator" Grid.Row="1"/>
<ScrollView Grid.Row="2">
<Label x:Name="MyLabel"/>
</ScrollView>
<Button x:Name="MyButton" Grid.Row="3" Text="See4Me" Clicked="Handle_Click" BorderRadius="4"/>
</Grid>
</ContentPage.Content>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment