next_main
This commit is contained in:
13
app/src/base_models/text_fuild.py
Normal file
13
app/src/base_models/text_fuild.py
Normal file
@@ -0,0 +1,13 @@
|
||||
import flet as ft
|
||||
from src.base_models.colour import color
|
||||
|
||||
class TextField(ft.TextField):
|
||||
def __init__(self, width:int=250,height:int=40,password:bool=False,bgcolor:str=color[3]):
|
||||
super().__init__(
|
||||
width=width,
|
||||
height=height,
|
||||
password=password
|
||||
)
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user