8 lines
183 B
Python
8 lines
183 B
Python
import flet as ft
|
|
|
|
class Workspace:
|
|
def __init__(self): pass
|
|
|
|
def build(self) -> ft.Container:
|
|
return ft.Container(content=ft.Text("Выберете вкладку"))
|