Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ndonkohenri/flet_material3_demo
Material showcase of the Flet python framework.
https://github.com/ndonkohenri/flet_material3_demo
flet material-design material3
Last synced: 5 days ago
JSON representation
Material showcase of the Flet python framework.
- Host: GitHub
- URL: https://github.com/ndonkohenri/flet_material3_demo
- Owner: ndonkoHenri
- Created: 2023-06-18T01:22:08.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2024-03-21T13:55:06.000Z (8 months ago)
- Last Synced: 2024-10-08T06:06:58.676Z (about 1 month ago)
- Topics: flet, material-design, material3
- Language: Python
- Homepage:
- Size: 114 KB
- Stars: 9
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Flet Material3 Demo
Rebuilding the Flutter version([web link](https://flutter.github.io/samples/web/material_3_demo/#/), [GitHub repo](https://github.com/chayanforyou/flutter_material_3_demo/blob/master/lib/main.dart)) using the [Flet](https://flet.dev) python framework.## Getting Started
* Install [Python](https://www.python.org/downloads/)
* Set up and activate a virtual environment:
* Install project requirements:
```commandline
pip install -r requirements.txt
```
* Clone this project creating your local version, move into the folder, then run the app:
- normally:
```commandline
python main.py
```
- with hot-reload:
```commandline
flet run main.py -r
```
Reload triggers on main app file and sub folders changes as long as `-r` (`--recursive`) active. Reload does not save state of the app at time of writing.