We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2d7b0e2 commit 475cfa3Copy full SHA for 475cfa3
1 file changed
openandroidinstaller/views/success_view.py
@@ -68,6 +68,15 @@ def close_window(e):
68
""",
69
on_tap_link=lambda e: self.page.launch_url(e.data),
70
),
71
+ Row(
72
+ [
73
+ ElevatedButton(
74
+ "Finish and close",
75
+ expand=True,
76
+ on_click=close_window,
77
+ )
78
+ ]
79
+ ),
80
Row(
81
[
82
ElevatedButton(
@@ -76,14 +85,8 @@ def close_window(e):
85
icon=icons.RESTART_ALT,
86
disabled=False,
87
expand=True,
- ),
- ElevatedButton(
- "Finish and close",
- on_click=close_window,
83
- icon=icons.EXIT_TO_APP_OUTLINED,
84
- expand=True,
88
)
89
]
- )
90
91
92
return self.view
0 commit comments