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