-
Notifications
You must be signed in to change notification settings - Fork 218
/
Copy pathbuilding-views-on-route-change.py
67 lines (56 loc) · 1.87 KB
/
building-views-on-route-change.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
import flet
from flet import AppBar, ElevatedButton, Page, Text, View, colors
def main(page: Page):
page.title = "Routes Example"
print("Initial route:", page.route)
def route_change(e):
print("Route change:", e.route)
page.views.clear()
page.views.append(
View(
"/",
[
AppBar(title=Text("Flet app")),
ElevatedButton("Go to settings", on_click=open_settings),
],
)
)
if page.route == "/settings" or page.route == "/settings/mail":
page.views.append(
View(
"/settings",
[
AppBar(title=Text("Settings"), bgcolor=colors.SURFACE_VARIANT),
Text("Settings!", style="bodyMedium"),
ElevatedButton(
"Go to mail settings", on_click=open_mail_settings
),
],
)
)
if page.route == "/settings/mail":
page.views.append(
View(
"/settings/mail",
[
AppBar(
title=Text("Mail Settings"), bgcolor=colors.SURFACE_VARIANT
),
Text("Mail settings!"),
],
)
)
page.update()
def view_pop(e):
print("View pop:", e.view)
page.views.pop()
top_view = page.views[-1]
page.go(top_view.route)
page.on_route_change = route_change
page.on_view_pop = view_pop
def open_mail_settings(e):
page.go("/settings/mail")
def open_settings(e):
page.go("/settings")
page.go(page.route)
flet.app(target=main, view=flet.AppView.WEB_BROWSER)