-
Notifications
You must be signed in to change notification settings - Fork 3
/
mkdocs.yml
158 lines (149 loc) · 4.13 KB
/
mkdocs.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
site_name: Flet-Easy
site_url: https://daxexs.github.io/flet-easy/
site_author: Daxexs
site_description: >-
Flet-Easy is a user-friendly add-on package for Flet, offering a cleaner code structure with numerous customizable features like JWT, routers, decorators, middleware and more.
edit_uri: edit/main/docs/
copyright: Copyright © <span id="dynamic-year"></span> Daxexs
repo_name: Daxexs/flet-easy
repo_url: https://github.com/Daxexs/flet-easy
theme:
custom_dir: docs/overrides
name: material
palette:
- media: "(prefers-color-scheme)"
primary: teal
accent: teal
toggle:
icon: material/brightness-auto
name: Switch to light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: teal
accent: teal
toggle:
icon: material/brightness-7
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: teal
accent: teal
toggle:
icon: material/brightness-4
name: Switch to system preference
font:
text: Lexend
code: Fira Code
font: false
language: en
direction: ltr
logo: assets/images/logo.png
favicon: assets/images/favicon.png
icon:
edit: material/pencil-remove-outline
view: material/eye
admonition:
note: octicons/tag-16
abstract: octicons/checklist-16
info: octicons/info-16
tip: octicons/squirrel-16
success: octicons/check-16
question: octicons/question-16
warning: octicons/alert-16
failure: octicons/x-circle-16
danger: octicons/zap-16
bug: octicons/bug-16
example: octicons/beaker-16
quote: octicons/quote-16
features:
- navigation.instant
- navigation.instant.prefetch
- navigation.instant.progress
- navigation.instant.preview
- navigation.tracking
- navigation.path
- navigation.indexes
- navigation.top
- search.suggest
- search.highlight
- search.share
- navigation.footer
- content.code.copy
- content.code.select
- content.code.annotate
- content.action.edit
plugins:
- search:
lang:
- en
- es
separator: '[\s\-,:!=\[\]()"/]+|(?!\b)(?=[A-Z][a-z])|\.(?!\d)|&[lg]t;'
pipeline:
- stemmer
- stopWordFilter
- trimmer
extra_css:
- stylesheets/extra.css
extra:
status:
new: Recently added
deprecated: Deprecated
version:
provider: mike
social:
- icon: fontawesome/brands/github
link: https://github.com/Daxexs/flet-easy
name: Repository
generator: false
seo:
meta:
- name: description
content: "Flet-Easy is a user-friendly add-on package for Flet with customizable features like JWT, routers, and more."
- name: keywords
content: "Flet, flet-easy, flet easy, decorators, CLI, middleware, routing, responsive design, jwt"
markdown_extensions:
- admonition
- pymdownx.details
- pymdownx.superfences
- attr_list
- md_in_html
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- attr_list
- md_in_html
- toc:
permalink: true
nav:
- index.md
- installation.md
- begin.md
- how-to-use.md
- run-the-app.md
- cli-to-create-app.md
- dynamic-routes.md
- data-sharing-between-pages.md
- Add pages:
- Through decorators: add-pages/through-decorators.md
- By means of functions: add-pages/by-means-of-functions.md
- Through classes: add-pages/through-classes.md
- In automatic: add-pages/in-automatic.md
- Customized app:
- Route protection: customized-app/route-protection.md
- General settings: customized-app/general-settings.md
- control view configuration: customized-app/control-view-configuration.md
- Page 404: customized-app/page-404.md
- events: customized-app/events.md
- Events:
- On keyboard event: events/keyboard-event.md
- On resize: events/on-resize.md
- middleware.md
- basic-jwt.md
- ref.md
- responsiveControlsy.md
- working-with-other-apps.md
extra_javascript:
- assets/js/dynamic-year.js