20 lines
511 B
Python
20 lines
511 B
Python
import flet as ft
|
|
import designer as des
|
|
|
|
class Add_user_data(ft.View):
|
|
def __init__(self,page:ft.Page,route:str=""):
|
|
super().__init__(
|
|
bgcolor=des.color[2],
|
|
route=route,
|
|
controls=[
|
|
ft.Column(
|
|
controls=[
|
|
ft.Row(
|
|
controls=[
|
|
|
|
]
|
|
)
|
|
]
|
|
)
|
|
]
|
|
) |