We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c7babcd commit c56ca5dCopy full SHA for c56ca5d
main.py
@@ -20,15 +20,15 @@ def main(page: Page):
20
# page.window_always_on_top = True
21
22
# set the minimum width and height of the window.
23
- # page.window_min_width = 245
24
- # page.window_min_height = 406
+ page.window_min_width = 245
+ page.window_min_height = 406
25
26
# Setting the theme of the page to light mode.
27
page.theme_mode = "light"
28
29
# set the width and height of the window.
30
- # page.window_width = 562
31
- # page.window_height = 720
+ page.window_width = 562
+ page.window_height = 720
32
33
# Creating a progress bar that will be used to show the user that the app is busy doing something.
34
page.splash = ProgressBar(visible=False)
0 commit comments