material_design_flet
material_design_flet copied to clipboard
A modern UI library built with Flet featuring a range of customized components.
```py class Buttons(ft.Container, Theme): def __init__(self, width, height, title: str, *args, **kwargs): # self.title = title # self.text = ft.Text( self.title, weight="bold", color=ft.colors.with_opacity(0.85, Theme.primary_theme), ) # kwargs.setdefault("width", width) kwargs.setdefault("height", height)...
Hello, totally new to Flet and your package. I hate the appearance of the new Material design that is used in Flet. So tried to install your package to see...