new intarfece

This commit is contained in:
2026-04-06 12:15:09 +05:00
parent fe078b8560
commit 10fb240dcd
17 changed files with 197 additions and 129 deletions

View File

@@ -31,11 +31,11 @@ class ProfilePage(ft.Column):
hint_text="Загрузка...",
)
self._loading = ft.ProgressRing(visible=False, width=24, height=24)
self._status = ft.Text(value="", size=14)
self._loading = ft.ProgressRing(visible=False, width=ds.s(24), height=ds.s(24))
self._status = ft.Text(value="", size=ds.s(14))
super().__init__(
spacing=16,
spacing=ds.s(16),
controls=[
ds.CastomText(
text="Редактировать профиль",
@@ -47,7 +47,7 @@ class ProfilePage(ft.Column):
self._org_dropdown,
self._group_dropdown,
ft.Row(
spacing=12,
spacing=ds.s(12),
controls=[
ds.CastomButton(text="Сохранить", on_click=self._save),
self._loading,