12 lines
339 B
Python
12 lines
339 B
Python
import flet as ft
|
|
import designer as ds
|
|
|
|
class MainPageUser(ft.Column):
|
|
def __init__(self):
|
|
super().__init__(
|
|
spacing=16,
|
|
controls=[
|
|
ft.Text("Добро пожаловать в COPP!", color=ds.clolors.ferst, size=24, weight=ft.FontWeight.BOLD),
|
|
|
|
],
|
|
) |