I would like to change the window title, how can I do this? Image
import flet as ft
def main(page: ft.Page):
page.theme_mode = ft.ThemeMode.DARK
page.window_height, page.window_width = 300, 300
page.title = 'app'
page.add(ft.Text('Hello'))
ft.app(main)
Tried to change the theme, didn't help, and it's not in the documentation.