Files
copp/app/src/base_models/text_fuild.py
2025-04-08 22:22:30 +05:00

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
)