0

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.

N1C1
  • 3
  • 2

1 Answers1

0

one way is to hide the original window title and create your own one.

bugmaker
  • 16
  • 1
  • 1
    Dear bugmaker, welcome to Stack Overflow! It would help if you also write about how to implement your said changes, perhaps some example code which shows your solution, would work. – Dev Bhuyan Aug 09 '23 at 19:15