Skip to content

Commit c56ca5d

Browse files
committed
added height and width properties
1 parent c7babcd commit c56ca5d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

main.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,15 @@ def main(page: Page):
2020
# page.window_always_on_top = True
2121

2222
# set the minimum width and height of the window.
23-
# page.window_min_width = 245
24-
# page.window_min_height = 406
23+
page.window_min_width = 245
24+
page.window_min_height = 406
2525

2626
# Setting the theme of the page to light mode.
2727
page.theme_mode = "light"
2828

2929
# set the width and height of the window.
30-
# page.window_width = 562
31-
# page.window_height = 720
30+
page.window_width = 562
31+
page.window_height = 720
3232

3333
# Creating a progress bar that will be used to show the user that the app is busy doing something.
3434
page.splash = ProgressBar(visible=False)

0 commit comments

Comments
 (0)