7 lines
294 B
Python
7 lines
294 B
Python
import flet as ft
|
|
|
|
def profile_page(page: ft.Page):
|
|
return ft.Column([
|
|
ft.Text("ข้อมูลผู้ใช้งาน", size=22),
|
|
ft.Text("รายละเอียดข้อมูลผู้ใช้งานจะมาอยู่ตรงนี้"),
|
|
]) |