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.
ORANGE_300
SURFACE_CONTAINER_HIGHEST
1 parent e92e872 commit bc111c2Copy full SHA for bc111c2
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.ORANGE_300),
+ 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.ORANGE_300),
+ 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