Skip to content
This repository has been archived by the owner on Feb 10, 2024. It is now read-only.

Latest commit

 

History

History
60 lines (60 loc) · 1.5 KB

tree.md

File metadata and controls

60 lines (60 loc) · 1.5 KB

├── .github/ │ │ │ └── workflows/ │ └── build.yml │ ├── assets/ │ └── fletxible.png │ ├── src/ │ │ │ ├── core/ │ │ ├── init.py │ │ ├── base.py │ │ ├── drawer.py │ │ ├── header.py │ │ ├── left_panel.py │ │ ├── middle_panel.py │ │ ├── mobile_drop_down.py │ │ ├── mobile_navigation.py │ │ ├── navigation.py │ │ ├── repo_data.py │ │ └── right_panel.py │ │ │ ├── fx_material/ │ │ ├── init.py │ │ ├── annotation.py │ │ ├── block.py │ │ └── typography.py │ │ │ ├── scripts/ │ │ ├── init.py │ │ ├── create.py │ │ └── build.py │ │
│ │ │ ├── utilities/ │ │ ├── init.py │ │ ├── fx_cli.py │ │ ├── fx_config.py │ │ ├── fx_error.py │ │ ├── fx_scratch.py │ │ ├── fx_sub_router.py │ │ ├── fx_sub_template.py │ │ └── fx_template.py │ │ │ ├── init.py │ ├── config.py │ └── main.py │

├── tests/ │ └── test_template.py │ ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── requirements.txt ├── setup.py └── tree.md