Skip to content

Instantly share code, notes, and snippets.

@grimorde
Created February 3, 2020 07:42
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 grimorde/df1514b6c7dc4b59fa4eb135202bf241 to your computer and use it in GitHub Desktop.
Save grimorde/df1514b6c7dc4b59fa4eb135202bf241 to your computer and use it in GitHub Desktop.
Modal usage
<Grid>
<ScrollView Grid.Row="0">
<StackLayout>
<!-- main content here -->
</StackLayout>
</ScrollView>
<controls:Modal
Grid.Row="0"
ModalHeader="Help Text"
ShowModal="{Binding ShowHelpModal}"
VerticalOptions="Fill">
<StackLayout>
<!-- modal content here -->
</StackLayout>
</controls:Modal>
</Grid>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment