We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9c39fec + bc111c2 commit 47dd1afCopy full SHA for 47dd1af
docs/getting-started/navigation-and-routing.md
@@ -116,7 +116,7 @@ def main(page: ft.Page):
116
ft.View(
117
"/",
118
[
119
- ft.AppBar(title=ft.Text("Flet app"), bgcolor=ft.Colors.SURFACE_VARIANT),
+ ft.AppBar(title=ft.Text("Flet app"), bgcolor=ft.Colors.SURFACE_CONTAINER_HIGHEST),
120
ft.ElevatedButton("Visit Store", on_click=lambda _: page.go("/store")),
121
],
122
)
@@ -126,7 +126,7 @@ def main(page: ft.Page):
126
127
"/store",
128
129
- ft.AppBar(title=ft.Text("Store"), bgcolor=ft.Colors.SURFACE_VARIANT),
+ ft.AppBar(title=ft.Text("Store"), bgcolor=ft.Colors.SURFACE_CONTAINER_HIGHEST),
130
ft.ElevatedButton("Go Home", on_click=lambda _: page.go("/")),
131
132
0 commit comments