13 lines
329 B
Python
13 lines
329 B
Python
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
|
|
)
|
|
|
|
|
|
|