next_main

This commit is contained in:
jze9
2025-04-08 22:22:30 +05:00
parent a7e85b949c
commit 788bb5b92c
13 changed files with 994 additions and 41 deletions

View 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
)