update shop

This commit is contained in:
2025-12-17 18:32:46 +02:00
parent d8c6de1f2b
commit 56f9da6966
9 changed files with 130 additions and 9 deletions

14
UI_V2/chat/chat.py Normal file
View File

@@ -0,0 +1,14 @@
import flet as ft
class Chat:
def __init__(self, page: ft.Page):
self.page = page
def build(self):
return ft.Container(
content=ft.Column(
[
ft.Text("Aveti nevoie de ajutor?")
]
)
)