├── .gitignore ├── LICENSE ├── README.md ├── README_EN.md ├── app ├── app.py ├── base.py ├── config │ ├── config.py │ ├── theme.py │ └── version.py ├── pages │ ├── calc.py │ ├── carousel.py │ ├── home.py │ ├── inputs.py │ ├── player.py │ ├── settings.py │ ├── stack_page.py │ ├── sub_navigation_bar │ │ ├── __init__.py │ │ ├── app.py │ │ ├── buttons.py │ │ ├── chart.py │ │ ├── floating_buttons.py │ │ └── time_picker.py │ └── todo.py └── utils │ └── __init__.py ├── assets ├── Preview.mov ├── images │ ├── backgrounds │ │ ├── background1.jpg │ │ ├── background2.jpg │ │ ├── background3.jpg │ │ └── background4.jpg │ ├── icon.png │ ├── screenshot1.png │ ├── screenshot2.png │ ├── screenshot3.png │ ├── screenshot4.png │ └── user.jpeg └── musics │ └── temp_cover.jpg ├── components ├── fletcarousel │ ├── README.md │ ├── __init__.py │ ├── attributes.py │ ├── fletcarousel.py │ └── horizontal.py └── stacked_notifications │ ├── README.md │ ├── __init__.py │ └── stacked_notifications.py ├── docs └── images │ ├── screenshot1.png │ ├── screenshot2.png │ ├── screenshot3.png │ └── screenshot4.png ├── main.py ├── requirements.txt └── single_main.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarencejh/PyDracula-flet/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarencejh/PyDracula-flet/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarencejh/PyDracula-flet/HEAD/README.md -------------------------------------------------------------------------------- /README_EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarencejh/PyDracula-flet/HEAD/README_EN.md -------------------------------------------------------------------------------- /app/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarencejh/PyDracula-flet/HEAD/app/app.py -------------------------------------------------------------------------------- /app/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarencejh/PyDracula-flet/HEAD/app/base.py -------------------------------------------------------------------------------- /app/config/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarencejh/PyDracula-flet/HEAD/app/config/config.py -------------------------------------------------------------------------------- /app/config/theme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarencejh/PyDracula-flet/HEAD/app/config/theme.py -------------------------------------------------------------------------------- /app/config/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarencejh/PyDracula-flet/HEAD/app/config/version.py -------------------------------------------------------------------------------- /app/pages/calc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarencejh/PyDracula-flet/HEAD/app/pages/calc.py -------------------------------------------------------------------------------- /app/pages/carousel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarencejh/PyDracula-flet/HEAD/app/pages/carousel.py -------------------------------------------------------------------------------- /app/pages/home.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarencejh/PyDracula-flet/HEAD/app/pages/home.py -------------------------------------------------------------------------------- /app/pages/inputs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarencejh/PyDracula-flet/HEAD/app/pages/inputs.py -------------------------------------------------------------------------------- /app/pages/player.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarencejh/PyDracula-flet/HEAD/app/pages/player.py -------------------------------------------------------------------------------- /app/pages/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarencejh/PyDracula-flet/HEAD/app/pages/settings.py -------------------------------------------------------------------------------- /app/pages/stack_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarencejh/PyDracula-flet/HEAD/app/pages/stack_page.py -------------------------------------------------------------------------------- /app/pages/sub_navigation_bar/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarencejh/PyDracula-flet/HEAD/app/pages/sub_navigation_bar/__init__.py -------------------------------------------------------------------------------- /app/pages/sub_navigation_bar/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarencejh/PyDracula-flet/HEAD/app/pages/sub_navigation_bar/app.py -------------------------------------------------------------------------------- /app/pages/sub_navigation_bar/buttons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarencejh/PyDracula-flet/HEAD/app/pages/sub_navigation_bar/buttons.py -------------------------------------------------------------------------------- /app/pages/sub_navigation_bar/chart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarencejh/PyDracula-flet/HEAD/app/pages/sub_navigation_bar/chart.py -------------------------------------------------------------------------------- /app/pages/sub_navigation_bar/floating_buttons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarencejh/PyDracula-flet/HEAD/app/pages/sub_navigation_bar/floating_buttons.py -------------------------------------------------------------------------------- /app/pages/sub_navigation_bar/time_picker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarencejh/PyDracula-flet/HEAD/app/pages/sub_navigation_bar/time_picker.py -------------------------------------------------------------------------------- /app/pages/todo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarencejh/PyDracula-flet/HEAD/app/pages/todo.py -------------------------------------------------------------------------------- /app/utils/__init__.py: -------------------------------------------------------------------------------- 1 | # 工具包 -------------------------------------------------------------------------------- /assets/Preview.mov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarencejh/PyDracula-flet/HEAD/assets/Preview.mov -------------------------------------------------------------------------------- /assets/images/backgrounds/background1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarencejh/PyDracula-flet/HEAD/assets/images/backgrounds/background1.jpg -------------------------------------------------------------------------------- /assets/images/backgrounds/background2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarencejh/PyDracula-flet/HEAD/assets/images/backgrounds/background2.jpg -------------------------------------------------------------------------------- /assets/images/backgrounds/background3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarencejh/PyDracula-flet/HEAD/assets/images/backgrounds/background3.jpg -------------------------------------------------------------------------------- /assets/images/backgrounds/background4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarencejh/PyDracula-flet/HEAD/assets/images/backgrounds/background4.jpg -------------------------------------------------------------------------------- /assets/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarencejh/PyDracula-flet/HEAD/assets/images/icon.png -------------------------------------------------------------------------------- /assets/images/screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarencejh/PyDracula-flet/HEAD/assets/images/screenshot1.png -------------------------------------------------------------------------------- /assets/images/screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarencejh/PyDracula-flet/HEAD/assets/images/screenshot2.png -------------------------------------------------------------------------------- /assets/images/screenshot3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarencejh/PyDracula-flet/HEAD/assets/images/screenshot3.png -------------------------------------------------------------------------------- /assets/images/screenshot4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarencejh/PyDracula-flet/HEAD/assets/images/screenshot4.png -------------------------------------------------------------------------------- /assets/images/user.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarencejh/PyDracula-flet/HEAD/assets/images/user.jpeg -------------------------------------------------------------------------------- /assets/musics/temp_cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarencejh/PyDracula-flet/HEAD/assets/musics/temp_cover.jpg -------------------------------------------------------------------------------- /components/fletcarousel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarencejh/PyDracula-flet/HEAD/components/fletcarousel/README.md -------------------------------------------------------------------------------- /components/fletcarousel/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarencejh/PyDracula-flet/HEAD/components/fletcarousel/__init__.py -------------------------------------------------------------------------------- /components/fletcarousel/attributes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarencejh/PyDracula-flet/HEAD/components/fletcarousel/attributes.py -------------------------------------------------------------------------------- /components/fletcarousel/fletcarousel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarencejh/PyDracula-flet/HEAD/components/fletcarousel/fletcarousel.py -------------------------------------------------------------------------------- /components/fletcarousel/horizontal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarencejh/PyDracula-flet/HEAD/components/fletcarousel/horizontal.py -------------------------------------------------------------------------------- /components/stacked_notifications/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarencejh/PyDracula-flet/HEAD/components/stacked_notifications/README.md -------------------------------------------------------------------------------- /components/stacked_notifications/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarencejh/PyDracula-flet/HEAD/components/stacked_notifications/__init__.py -------------------------------------------------------------------------------- /components/stacked_notifications/stacked_notifications.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarencejh/PyDracula-flet/HEAD/components/stacked_notifications/stacked_notifications.py -------------------------------------------------------------------------------- /docs/images/screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarencejh/PyDracula-flet/HEAD/docs/images/screenshot1.png -------------------------------------------------------------------------------- /docs/images/screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarencejh/PyDracula-flet/HEAD/docs/images/screenshot2.png -------------------------------------------------------------------------------- /docs/images/screenshot3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarencejh/PyDracula-flet/HEAD/docs/images/screenshot3.png -------------------------------------------------------------------------------- /docs/images/screenshot4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarencejh/PyDracula-flet/HEAD/docs/images/screenshot4.png -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarencejh/PyDracula-flet/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarencejh/PyDracula-flet/HEAD/requirements.txt -------------------------------------------------------------------------------- /single_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clarencejh/PyDracula-flet/HEAD/single_main.py --------------------------------------------------------------------------------