fix install diogram

This commit is contained in:
2026-04-02 12:00:11 +05:00
parent 22bbc3a0a6
commit 8a189e310b
23 changed files with 1212 additions and 189 deletions

View File

@@ -20,8 +20,9 @@ class UserView(ft.View):
super().__init__(
route=f"/user/{url_key}",
bgcolor=ds.clolors.background,
horizontal_alignment=ft.CrossAxisAlignment.START,
horizontal_alignment=ft.CrossAxisAlignment.STRETCH,
vertical_alignment=ft.MainAxisAlignment.START,
padding=ft.padding.symmetric(horizontal=12, vertical=8),
)
self.controls = [
ft.Column(
@@ -31,7 +32,13 @@ class UserView(ft.View):
ft.Row(
alignment=ft.MainAxisAlignment.SPACE_BETWEEN,
controls=[
ds.CastomText(text="Добро пожаловать в COPP!", size=24, weight=ft.FontWeight.BOLD),
ft.Text(
"Добро пожаловать в COPP!",
color=ds.clolors.ferst,
size=20,
weight=ft.FontWeight.BOLD,
expand=True,
),
profile_btn,
]
),