Skip to content

Instantly share code, notes, and snippets.

@codercampos
Created June 21, 2019 22:33
Show Gist options
  • Save codercampos/3da7ad80a09183df3c3dca19b26d9f81 to your computer and use it in GitHub Desktop.
Save codercampos/3da7ad80a09183df3c3dca19b26d9f81 to your computer and use it in GitHub Desktop.
<Frame HorizontalOptions="FillAndExpand" Visual="Material">
<StackLayout VerticalOptions="FillAndExpand" HorizontalOptions="FillAndExpand">
<Image Source="Your_image" VerticalOptions="FillAndExpand" HorizontalOptions="CenterAndExpand" Aspect="AspectFit" />
<Label VerticalOptions="FillAndExpand" HorizontalOptions="FillAndExpand" HorizontalTextAlignment="Center" Text="Text" />
<StackLayout.GestureRecognizers>
<TapGestureRecognizer Command={Binding YourTapCommand} />
</StackLayout.GestureRecognizers>
</StackLayout>
</Frame>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment