Navigation
NavigationPage using push/pop
let view model dispatch =
View.NavigationPage(pages=
[ for page in model.PageStack do
match page with
| "Home" ->
yield View.ContentPage(...).HasNavigationBar(true).HasBackButton(true)
| "PageA" ->
yield View.ContentPage(...).HasNavigationBar(true).HasBackButton(true)
| "PageB" ->
yield View.ContentPage(...).HasNavigationBar(true).HasBackButton(true)
])NavigationPage Toolbar
Example: Modal pages by pushing an extra page
TabbedPage navigation
CarouselPage navigation
MasterDetail Page navigation
Last updated