NavigationPage
On this page
Basic example
View.NavigationPage([
View.ContentPage(
title = "ContentPage",
content = View.Label("NavigationPage with a single Label")
)
])
Basic example with styling
View.NavigationPage([
View.ContentPage(
title = "ContentPage",
content =
View.Label(
horizontalOptions = model.MyStyle.Position,
verticalOptions = model.MyStyle.Position,
backgroundColor = model.MyStyle.ViewColor,
padding = model.MyStyle.Padding,
text = "NavigationPage with a single Label"
)
)
])
See also: