├── .github └── workflows │ └── build.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── api ├── api │ └── index.py ├── data │ └── style.py ├── requirements.txt └── vercel.json ├── command ├── __init__.py └── new_project.py ├── docs ├── docs │ ├── contribute.md │ ├── controls │ │ ├── alerts.md │ │ ├── annotations.md │ │ ├── badges.md │ │ ├── buttons.md │ │ ├── checkboxes.md │ │ ├── chips.md │ │ ├── dropdowns.md │ │ ├── index.md │ │ └── switches.md │ └── index.md ├── mkdocs.yml └── site │ ├── .gitignore │ ├── 404.html │ ├── assets │ ├── images │ │ └── favicon.png │ ├── javascripts │ │ ├── bundle.51198bba.min.js │ │ ├── bundle.51198bba.min.js.map │ │ ├── lunr │ │ │ ├── min │ │ │ │ ├── lunr.ar.min.js │ │ │ │ ├── lunr.da.min.js │ │ │ │ ├── lunr.de.min.js │ │ │ │ ├── lunr.du.min.js │ │ │ │ ├── lunr.es.min.js │ │ │ │ ├── lunr.fi.min.js │ │ │ │ ├── lunr.fr.min.js │ │ │ │ ├── lunr.hi.min.js │ │ │ │ ├── lunr.hu.min.js │ │ │ │ ├── lunr.it.min.js │ │ │ │ ├── lunr.ja.min.js │ │ │ │ ├── lunr.jp.min.js │ │ │ │ ├── lunr.ko.min.js │ │ │ │ ├── lunr.multi.min.js │ │ │ │ ├── lunr.nl.min.js │ │ │ │ ├── lunr.no.min.js │ │ │ │ ├── lunr.pt.min.js │ │ │ │ ├── lunr.ro.min.js │ │ │ │ ├── lunr.ru.min.js │ │ │ │ ├── lunr.stemmer.support.min.js │ │ │ │ ├── lunr.sv.min.js │ │ │ │ ├── lunr.ta.min.js │ │ │ │ ├── lunr.th.min.js │ │ │ │ ├── lunr.tr.min.js │ │ │ │ ├── lunr.vi.min.js │ │ │ │ └── lunr.zh.min.js │ │ │ ├── tinyseg.js │ │ │ └── wordcut.js │ │ └── workers │ │ │ ├── search.208ed371.min.js │ │ │ └── search.208ed371.min.js.map │ └── stylesheets │ │ ├── main.ded33207.min.css │ │ ├── main.ded33207.min.css.map │ │ ├── palette.a0c5b2b5.min.css │ │ └── palette.a0c5b2b5.min.css.map │ ├── contribute │ └── index.html │ ├── controls │ ├── alerts │ │ └── index.html │ ├── annotations │ │ └── index.html │ ├── badges │ │ └── index.html │ ├── buttons │ │ └── index.html │ ├── checkboxes │ │ └── index.html │ ├── chips │ │ └── index.html │ ├── dropdowns │ │ └── index.html │ ├── index.html │ └── switches │ │ └── index.html │ ├── index.html │ ├── search │ └── search_index.json │ ├── sitemap.xml │ └── sitemap.xml.gz ├── flet_material ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-310.pyc │ ├── admonition.cpython-310.pyc │ ├── alert.cpython-310.pyc │ ├── annotation.cpython-310.pyc │ ├── annotations.cpython-310.pyc │ ├── badge.cpython-310.pyc │ ├── base.cpython-310.pyc │ ├── button.cpython-310.pyc │ ├── checkbox.cpython-310.pyc │ ├── chip.cpython-310.pyc │ ├── code_block.cpython-310.pyc │ └── switch.cpython-310.pyc ├── admonition.py ├── admonition │ ├── admonition.py │ └── style.py ├── alert.py ├── annotation.py ├── badge.py ├── base.py ├── button.py ├── checkbox.py ├── chip.py ├── code_block.py └── switch.py ├── requirements.txt ├── setup.py ├── styles ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-310.pyc │ ├── admonition_style.cpython-310.pyc │ ├── alert_style.cpython-310.pyc │ ├── alert_styles.cpython-310.pyc │ ├── badge_style.cpython-310.pyc │ ├── fonts.cpython-310.pyc │ └── theme.cpython-310.pyc ├── admonition_style.py ├── alert_style.py ├── badge_style.py ├── fonts.py └── theme.py └── tests ├── test_admonitions.py ├── test_buttons.py └── test_switch.py /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineIndent/material_design_flet/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineIndent/material_design_flet/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineIndent/material_design_flet/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineIndent/material_design_flet/HEAD/README.md -------------------------------------------------------------------------------- /api/api/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineIndent/material_design_flet/HEAD/api/api/index.py -------------------------------------------------------------------------------- /api/data/style.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineIndent/material_design_flet/HEAD/api/data/style.py -------------------------------------------------------------------------------- /api/requirements.txt: -------------------------------------------------------------------------------- 1 | Flask==2.2.2 -------------------------------------------------------------------------------- /api/vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineIndent/material_design_flet/HEAD/api/vercel.json -------------------------------------------------------------------------------- /command/__init__.py: -------------------------------------------------------------------------------- 1 | from command.new_project import init_code 2 | -------------------------------------------------------------------------------- /command/new_project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineIndent/material_design_flet/HEAD/command/new_project.py -------------------------------------------------------------------------------- /docs/docs/contribute.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineIndent/material_design_flet/HEAD/docs/docs/contribute.md -------------------------------------------------------------------------------- /docs/docs/controls/alerts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineIndent/material_design_flet/HEAD/docs/docs/controls/alerts.md -------------------------------------------------------------------------------- /docs/docs/controls/annotations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineIndent/material_design_flet/HEAD/docs/docs/controls/annotations.md -------------------------------------------------------------------------------- /docs/docs/controls/badges.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineIndent/material_design_flet/HEAD/docs/docs/controls/badges.md -------------------------------------------------------------------------------- /docs/docs/controls/buttons.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineIndent/material_design_flet/HEAD/docs/docs/controls/buttons.md -------------------------------------------------------------------------------- /docs/docs/controls/checkboxes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineIndent/material_design_flet/HEAD/docs/docs/controls/checkboxes.md -------------------------------------------------------------------------------- /docs/docs/controls/chips.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineIndent/material_design_flet/HEAD/docs/docs/controls/chips.md -------------------------------------------------------------------------------- /docs/docs/controls/dropdowns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineIndent/material_design_flet/HEAD/docs/docs/controls/dropdowns.md -------------------------------------------------------------------------------- /docs/docs/controls/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineIndent/material_design_flet/HEAD/docs/docs/controls/index.md -------------------------------------------------------------------------------- /docs/docs/controls/switches.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineIndent/material_design_flet/HEAD/docs/docs/controls/switches.md -------------------------------------------------------------------------------- /docs/docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineIndent/material_design_flet/HEAD/docs/docs/index.md -------------------------------------------------------------------------------- /docs/mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineIndent/material_design_flet/HEAD/docs/mkdocs.yml -------------------------------------------------------------------------------- /docs/site/.gitignore: -------------------------------------------------------------------------------- 1 | .vercel 2 | -------------------------------------------------------------------------------- /docs/site/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineIndent/material_design_flet/HEAD/docs/site/404.html -------------------------------------------------------------------------------- /docs/site/assets/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineIndent/material_design_flet/HEAD/docs/site/assets/images/favicon.png -------------------------------------------------------------------------------- /docs/site/assets/javascripts/bundle.51198bba.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineIndent/material_design_flet/HEAD/docs/site/assets/javascripts/bundle.51198bba.min.js -------------------------------------------------------------------------------- /docs/site/assets/javascripts/bundle.51198bba.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineIndent/material_design_flet/HEAD/docs/site/assets/javascripts/bundle.51198bba.min.js.map -------------------------------------------------------------------------------- /docs/site/assets/javascripts/lunr/min/lunr.ar.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineIndent/material_design_flet/HEAD/docs/site/assets/javascripts/lunr/min/lunr.ar.min.js -------------------------------------------------------------------------------- /docs/site/assets/javascripts/lunr/min/lunr.da.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineIndent/material_design_flet/HEAD/docs/site/assets/javascripts/lunr/min/lunr.da.min.js -------------------------------------------------------------------------------- /docs/site/assets/javascripts/lunr/min/lunr.de.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineIndent/material_design_flet/HEAD/docs/site/assets/javascripts/lunr/min/lunr.de.min.js -------------------------------------------------------------------------------- /docs/site/assets/javascripts/lunr/min/lunr.du.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineIndent/material_design_flet/HEAD/docs/site/assets/javascripts/lunr/min/lunr.du.min.js -------------------------------------------------------------------------------- /docs/site/assets/javascripts/lunr/min/lunr.es.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineIndent/material_design_flet/HEAD/docs/site/assets/javascripts/lunr/min/lunr.es.min.js -------------------------------------------------------------------------------- /docs/site/assets/javascripts/lunr/min/lunr.fi.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineIndent/material_design_flet/HEAD/docs/site/assets/javascripts/lunr/min/lunr.fi.min.js -------------------------------------------------------------------------------- /docs/site/assets/javascripts/lunr/min/lunr.fr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineIndent/material_design_flet/HEAD/docs/site/assets/javascripts/lunr/min/lunr.fr.min.js -------------------------------------------------------------------------------- /docs/site/assets/javascripts/lunr/min/lunr.hi.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineIndent/material_design_flet/HEAD/docs/site/assets/javascripts/lunr/min/lunr.hi.min.js -------------------------------------------------------------------------------- /docs/site/assets/javascripts/lunr/min/lunr.hu.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineIndent/material_design_flet/HEAD/docs/site/assets/javascripts/lunr/min/lunr.hu.min.js -------------------------------------------------------------------------------- /docs/site/assets/javascripts/lunr/min/lunr.it.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineIndent/material_design_flet/HEAD/docs/site/assets/javascripts/lunr/min/lunr.it.min.js -------------------------------------------------------------------------------- /docs/site/assets/javascripts/lunr/min/lunr.ja.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineIndent/material_design_flet/HEAD/docs/site/assets/javascripts/lunr/min/lunr.ja.min.js -------------------------------------------------------------------------------- /docs/site/assets/javascripts/lunr/min/lunr.jp.min.js: -------------------------------------------------------------------------------- 1 | module.exports=require("./lunr.ja"); -------------------------------------------------------------------------------- /docs/site/assets/javascripts/lunr/min/lunr.ko.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineIndent/material_design_flet/HEAD/docs/site/assets/javascripts/lunr/min/lunr.ko.min.js -------------------------------------------------------------------------------- /docs/site/assets/javascripts/lunr/min/lunr.multi.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineIndent/material_design_flet/HEAD/docs/site/assets/javascripts/lunr/min/lunr.multi.min.js -------------------------------------------------------------------------------- /docs/site/assets/javascripts/lunr/min/lunr.nl.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineIndent/material_design_flet/HEAD/docs/site/assets/javascripts/lunr/min/lunr.nl.min.js -------------------------------------------------------------------------------- /docs/site/assets/javascripts/lunr/min/lunr.no.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineIndent/material_design_flet/HEAD/docs/site/assets/javascripts/lunr/min/lunr.no.min.js -------------------------------------------------------------------------------- /docs/site/assets/javascripts/lunr/min/lunr.pt.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineIndent/material_design_flet/HEAD/docs/site/assets/javascripts/lunr/min/lunr.pt.min.js -------------------------------------------------------------------------------- /docs/site/assets/javascripts/lunr/min/lunr.ro.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineIndent/material_design_flet/HEAD/docs/site/assets/javascripts/lunr/min/lunr.ro.min.js -------------------------------------------------------------------------------- /docs/site/assets/javascripts/lunr/min/lunr.ru.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineIndent/material_design_flet/HEAD/docs/site/assets/javascripts/lunr/min/lunr.ru.min.js -------------------------------------------------------------------------------- /docs/site/assets/javascripts/lunr/min/lunr.stemmer.support.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineIndent/material_design_flet/HEAD/docs/site/assets/javascripts/lunr/min/lunr.stemmer.support.min.js -------------------------------------------------------------------------------- /docs/site/assets/javascripts/lunr/min/lunr.sv.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineIndent/material_design_flet/HEAD/docs/site/assets/javascripts/lunr/min/lunr.sv.min.js -------------------------------------------------------------------------------- /docs/site/assets/javascripts/lunr/min/lunr.ta.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineIndent/material_design_flet/HEAD/docs/site/assets/javascripts/lunr/min/lunr.ta.min.js -------------------------------------------------------------------------------- /docs/site/assets/javascripts/lunr/min/lunr.th.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineIndent/material_design_flet/HEAD/docs/site/assets/javascripts/lunr/min/lunr.th.min.js -------------------------------------------------------------------------------- /docs/site/assets/javascripts/lunr/min/lunr.tr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineIndent/material_design_flet/HEAD/docs/site/assets/javascripts/lunr/min/lunr.tr.min.js -------------------------------------------------------------------------------- /docs/site/assets/javascripts/lunr/min/lunr.vi.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineIndent/material_design_flet/HEAD/docs/site/assets/javascripts/lunr/min/lunr.vi.min.js -------------------------------------------------------------------------------- /docs/site/assets/javascripts/lunr/min/lunr.zh.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineIndent/material_design_flet/HEAD/docs/site/assets/javascripts/lunr/min/lunr.zh.min.js -------------------------------------------------------------------------------- /docs/site/assets/javascripts/lunr/tinyseg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineIndent/material_design_flet/HEAD/docs/site/assets/javascripts/lunr/tinyseg.js -------------------------------------------------------------------------------- /docs/site/assets/javascripts/lunr/wordcut.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineIndent/material_design_flet/HEAD/docs/site/assets/javascripts/lunr/wordcut.js -------------------------------------------------------------------------------- /docs/site/assets/javascripts/workers/search.208ed371.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineIndent/material_design_flet/HEAD/docs/site/assets/javascripts/workers/search.208ed371.min.js -------------------------------------------------------------------------------- /docs/site/assets/javascripts/workers/search.208ed371.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineIndent/material_design_flet/HEAD/docs/site/assets/javascripts/workers/search.208ed371.min.js.map -------------------------------------------------------------------------------- /docs/site/assets/stylesheets/main.ded33207.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineIndent/material_design_flet/HEAD/docs/site/assets/stylesheets/main.ded33207.min.css -------------------------------------------------------------------------------- /docs/site/assets/stylesheets/main.ded33207.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineIndent/material_design_flet/HEAD/docs/site/assets/stylesheets/main.ded33207.min.css.map -------------------------------------------------------------------------------- /docs/site/assets/stylesheets/palette.a0c5b2b5.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineIndent/material_design_flet/HEAD/docs/site/assets/stylesheets/palette.a0c5b2b5.min.css -------------------------------------------------------------------------------- /docs/site/assets/stylesheets/palette.a0c5b2b5.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineIndent/material_design_flet/HEAD/docs/site/assets/stylesheets/palette.a0c5b2b5.min.css.map -------------------------------------------------------------------------------- /docs/site/contribute/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineIndent/material_design_flet/HEAD/docs/site/contribute/index.html -------------------------------------------------------------------------------- /docs/site/controls/alerts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineIndent/material_design_flet/HEAD/docs/site/controls/alerts/index.html -------------------------------------------------------------------------------- /docs/site/controls/annotations/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineIndent/material_design_flet/HEAD/docs/site/controls/annotations/index.html -------------------------------------------------------------------------------- /docs/site/controls/badges/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineIndent/material_design_flet/HEAD/docs/site/controls/badges/index.html -------------------------------------------------------------------------------- /docs/site/controls/buttons/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineIndent/material_design_flet/HEAD/docs/site/controls/buttons/index.html -------------------------------------------------------------------------------- /docs/site/controls/checkboxes/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineIndent/material_design_flet/HEAD/docs/site/controls/checkboxes/index.html -------------------------------------------------------------------------------- /docs/site/controls/chips/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineIndent/material_design_flet/HEAD/docs/site/controls/chips/index.html -------------------------------------------------------------------------------- /docs/site/controls/dropdowns/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineIndent/material_design_flet/HEAD/docs/site/controls/dropdowns/index.html -------------------------------------------------------------------------------- /docs/site/controls/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineIndent/material_design_flet/HEAD/docs/site/controls/index.html -------------------------------------------------------------------------------- /docs/site/controls/switches/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineIndent/material_design_flet/HEAD/docs/site/controls/switches/index.html -------------------------------------------------------------------------------- /docs/site/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineIndent/material_design_flet/HEAD/docs/site/index.html -------------------------------------------------------------------------------- /docs/site/search/search_index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineIndent/material_design_flet/HEAD/docs/site/search/search_index.json -------------------------------------------------------------------------------- /docs/site/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineIndent/material_design_flet/HEAD/docs/site/sitemap.xml -------------------------------------------------------------------------------- /docs/site/sitemap.xml.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineIndent/material_design_flet/HEAD/docs/site/sitemap.xml.gz -------------------------------------------------------------------------------- /flet_material/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineIndent/material_design_flet/HEAD/flet_material/__init__.py -------------------------------------------------------------------------------- /flet_material/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineIndent/material_design_flet/HEAD/flet_material/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /flet_material/__pycache__/admonition.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineIndent/material_design_flet/HEAD/flet_material/__pycache__/admonition.cpython-310.pyc -------------------------------------------------------------------------------- /flet_material/__pycache__/alert.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineIndent/material_design_flet/HEAD/flet_material/__pycache__/alert.cpython-310.pyc -------------------------------------------------------------------------------- /flet_material/__pycache__/annotation.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineIndent/material_design_flet/HEAD/flet_material/__pycache__/annotation.cpython-310.pyc -------------------------------------------------------------------------------- /flet_material/__pycache__/annotations.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineIndent/material_design_flet/HEAD/flet_material/__pycache__/annotations.cpython-310.pyc -------------------------------------------------------------------------------- /flet_material/__pycache__/badge.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineIndent/material_design_flet/HEAD/flet_material/__pycache__/badge.cpython-310.pyc -------------------------------------------------------------------------------- /flet_material/__pycache__/base.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineIndent/material_design_flet/HEAD/flet_material/__pycache__/base.cpython-310.pyc -------------------------------------------------------------------------------- /flet_material/__pycache__/button.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineIndent/material_design_flet/HEAD/flet_material/__pycache__/button.cpython-310.pyc -------------------------------------------------------------------------------- /flet_material/__pycache__/checkbox.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineIndent/material_design_flet/HEAD/flet_material/__pycache__/checkbox.cpython-310.pyc -------------------------------------------------------------------------------- /flet_material/__pycache__/chip.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineIndent/material_design_flet/HEAD/flet_material/__pycache__/chip.cpython-310.pyc -------------------------------------------------------------------------------- /flet_material/__pycache__/code_block.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineIndent/material_design_flet/HEAD/flet_material/__pycache__/code_block.cpython-310.pyc -------------------------------------------------------------------------------- /flet_material/__pycache__/switch.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineIndent/material_design_flet/HEAD/flet_material/__pycache__/switch.cpython-310.pyc -------------------------------------------------------------------------------- /flet_material/admonition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineIndent/material_design_flet/HEAD/flet_material/admonition.py -------------------------------------------------------------------------------- /flet_material/admonition/admonition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineIndent/material_design_flet/HEAD/flet_material/admonition/admonition.py -------------------------------------------------------------------------------- /flet_material/admonition/style.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineIndent/material_design_flet/HEAD/flet_material/admonition/style.py -------------------------------------------------------------------------------- /flet_material/alert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineIndent/material_design_flet/HEAD/flet_material/alert.py -------------------------------------------------------------------------------- /flet_material/annotation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineIndent/material_design_flet/HEAD/flet_material/annotation.py -------------------------------------------------------------------------------- /flet_material/badge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineIndent/material_design_flet/HEAD/flet_material/badge.py -------------------------------------------------------------------------------- /flet_material/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineIndent/material_design_flet/HEAD/flet_material/base.py -------------------------------------------------------------------------------- /flet_material/button.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineIndent/material_design_flet/HEAD/flet_material/button.py -------------------------------------------------------------------------------- /flet_material/checkbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineIndent/material_design_flet/HEAD/flet_material/checkbox.py -------------------------------------------------------------------------------- /flet_material/chip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineIndent/material_design_flet/HEAD/flet_material/chip.py -------------------------------------------------------------------------------- /flet_material/code_block.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineIndent/material_design_flet/HEAD/flet_material/code_block.py -------------------------------------------------------------------------------- /flet_material/switch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineIndent/material_design_flet/HEAD/flet_material/switch.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | click>=8.1.3 2 | flet>=0.8.1 3 | twine>=4.0.2 -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineIndent/material_design_flet/HEAD/setup.py -------------------------------------------------------------------------------- /styles/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineIndent/material_design_flet/HEAD/styles/__init__.py -------------------------------------------------------------------------------- /styles/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineIndent/material_design_flet/HEAD/styles/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /styles/__pycache__/admonition_style.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineIndent/material_design_flet/HEAD/styles/__pycache__/admonition_style.cpython-310.pyc -------------------------------------------------------------------------------- /styles/__pycache__/alert_style.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineIndent/material_design_flet/HEAD/styles/__pycache__/alert_style.cpython-310.pyc -------------------------------------------------------------------------------- /styles/__pycache__/alert_styles.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineIndent/material_design_flet/HEAD/styles/__pycache__/alert_styles.cpython-310.pyc -------------------------------------------------------------------------------- /styles/__pycache__/badge_style.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineIndent/material_design_flet/HEAD/styles/__pycache__/badge_style.cpython-310.pyc -------------------------------------------------------------------------------- /styles/__pycache__/fonts.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineIndent/material_design_flet/HEAD/styles/__pycache__/fonts.cpython-310.pyc -------------------------------------------------------------------------------- /styles/__pycache__/theme.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineIndent/material_design_flet/HEAD/styles/__pycache__/theme.cpython-310.pyc -------------------------------------------------------------------------------- /styles/admonition_style.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineIndent/material_design_flet/HEAD/styles/admonition_style.py -------------------------------------------------------------------------------- /styles/alert_style.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineIndent/material_design_flet/HEAD/styles/alert_style.py -------------------------------------------------------------------------------- /styles/badge_style.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineIndent/material_design_flet/HEAD/styles/badge_style.py -------------------------------------------------------------------------------- /styles/fonts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineIndent/material_design_flet/HEAD/styles/fonts.py -------------------------------------------------------------------------------- /styles/theme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineIndent/material_design_flet/HEAD/styles/theme.py -------------------------------------------------------------------------------- /tests/test_admonitions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineIndent/material_design_flet/HEAD/tests/test_admonitions.py -------------------------------------------------------------------------------- /tests/test_buttons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineIndent/material_design_flet/HEAD/tests/test_buttons.py -------------------------------------------------------------------------------- /tests/test_switch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LineIndent/material_design_flet/HEAD/tests/test_switch.py --------------------------------------------------------------------------------