We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 13c3500 commit 4222309Copy full SHA for 4222309
1 file changed
openandroidinstaller/views/success_view.py
@@ -68,15 +68,6 @@ 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(
@@ -85,8 +76,14 @@ 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