forked from Kodular/Documentation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
366 lines (355 loc) · 16.6 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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
# Site Config
site_name: Kodular Docs
site_description: Kodular Documentation
site_author: Kodular
site_url: https://docs.kodular.io/
# Repository
repo_name: Kodular Docs
repo_url: https://github.com/Kodular/Documentation
edit_uri: blob/master/docs/
#Copyright text in the footer
copyright: Kodular Creator
copyright2: Junnovate, LLC © 2020
# Customization
extra:
social:
- icon: fontawesome/solid/globe
link: https://www.kodular.io
name: Kodular
- icon: fontawesome/brands/twitter
link: https://twitter.com/KodularIO
name: Follow us on Twitter!
- icon: fontawesome/brands/facebook
link: https://facebook.com/Kodular
name: Like our Facebook Page!
- icon: fontawesome/brands/github-alt
link: https://github.com/Kodular
name: Check our OSS repositories!
adsense: "ca-pub-9439286719204795"
# disqus: "kodular-docs"
# Material theme for MkDocs : https://github.com/squidfunk/mkdocs-material/
theme:
name: 'material'
features:
- tabs
- search.highlight
palette:
primary: white
accent: pink
scheme: default
logo: 'assets/logo.png'
favicon: 'assets/favicon.ico'
font:
text: Roboto
code: Roboto Mono
custom_dir: makeroid_theme/
icon:
repo: fontawesome/brands/github
extra_css:
- assets/css/extra.css
extra_javascript:
- 'https://code.jquery.com/jquery-3.3.1.min.js'
- assets/js/extra.js
- assets/js/blockly_compressed.js
- search/search_index.js
plugins:
- search
- minify:
minify_html: true
- git-revision-date-localized
markdown_extensions:
- codehilite
# Markdown extensions: https://python-markdown.github.io/extensions/
- markdown.extensions.admonition
- markdown.extensions.toc:
permalink: 'true'
- markdown.extensions.attr_list
# PyMdown Extensions
- pymdownx.caret
- pymdownx.critic
- pymdownx.details
- pymdownx.emoji:
emoji_index: !!python/name:pymdownx.emoji.twemoji
emoji_generator: !!python/name:pymdownx.emoji.to_svg
- pymdownx.inlinehilite
- pymdownx.keys
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.superfences
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde
# Site navigation in the side bar
nav:
- Home:
- Overview: index.md
- Pricing: pricing.md
- Release Notes:
- Overview: release-notes/index.md
- Andromeda: release-notes/andromeda.md
- Butterfly: release-notes/butterfly.md
- Chamaeleon: release-notes/chamaeleon.md
- Draco: release-notes/draco.md
- Eagle: release-notes/eagle.md
- Terms of Service: terms-of-service.md
- Guides:
- Understanding Kodular: guides/index.md
- Hello World: guides/hello-world.md
- Backpack: guides/backpack.md
- Concept Cards: guides/concept-cards.md
- Live Development:
- Overview: guides/live-development/index.md
- Via WiFi: guides/live-development/wifi.md
- Via USB: guides/live-development/usb.md
- Component Guides:
- Using Dynamic Cards: guides/component-examples/dynamic-cards.md
- Staged App Updates: guides/component-examples/remote-config.md
- Firebase Rules: guides/component-examples/firebase-rules.md
- Securing Firebase: guides/component-examples/securing-app.md
- Targeting Notifications : guides/component-examples/targeted-notifications.md
- Surveys with Pollfish: guides/component-examples/pollfish.md
- Extensions:
- Create Extensions: guides/extensions/create-extensions.md
- Components:
- Overview: components/index.md
- Screen: components/screen.md
- User Interface:
- Overview: components/user-interface/index.md
- Button: components/user-interface/button.md
- Checkbox: components/user-interface/checkbox.md
- Circular Progress: components/user-interface/circular-progress.md
- Custom Progress: components/user-interface/custom-progress.md
- Date Picker: components/user-interface/date-picker.md
- Floating Action Button: components/user-interface/floating-action-button.md
- Image: components/user-interface/image.md
- Label: components/user-interface/label.md
- Linear Progressbar: components/user-interface/linear-progressbar.md
- List Picker: components/user-interface/list-picker.md
- Notifier: components/user-interface/notifier.md
- Radio Button: components/user-interface/radio-button.md
- Rating Bar: components/user-interface/rating-bar.md
- Slider: components/user-interface/slider.md
- Snackbar: components/user-interface/snackbar.md
- Spinner: components/user-interface/spinner.md
- Spotlight: components/user-interface/spotlight.md
- State Progress Bar: components/user-interface/state-progress-bar.md
- Switch: components/user-interface/switch.md
- Text Box: components/user-interface/text-box.md
- Time Picker: components/user-interface/time-picker.md
- Layout:
- Overview: components/layout/index.md
- General:
- Overview: components/layout/general/index.md
- Card View: components/layout/general/card-view.md
- Grid View: components/layout/general/grid-view.md
- Horizontal Arrangement: components/layout/general/horizontal-arrangement.md
- Horizontal Scroll Arrangement: components/layout/general/horizontal-scroll-arrangement.md
- Space: components/layout/general/space.md
- Swipe Refresh Layout: components/layout/general/swipe-refresh-layout.md
- Table Arrangement: components/layout/general/table-arrangement.md
- Vertical Arrangement: components/layout/general/vertical-arrangement.md
- Vertical Scroll Arrangement: components/layout/general/vertical-scroll-arrangement.md
- Lists:
- Overview: components/layout/lists/index.md
- List View: components/layout/lists/list-view.md
- List View Image and Text: components/layout/lists/list-view-image-and-text.md
- Views:
- Overview: components/layout/views/index.md
- Bottom Sheet: components/layout/views/bottom-sheet.md
- Chat View: components/layout/views/chat-view.md
- Gallery Viewer: components/layout/views/gallery-viewer.md
- Surface View: components/layout/views/surface-view.md
- View Flipper: components/layout/views/view-flipper.md
- Web Viewer: components/layout/views/web-viewer.md
- Navigation:
- Overview: components/layout/navigation/index.md
- Bottom Navigation: components/layout/navigation/bottom-navigation.md
- Side Menu Layout: components/layout/navigation/side-menu-layout.md
- Tab Layout: components/layout/navigation/tab-layout.md
- View Pager: components/layout/navigation/view-pager.md
- Media:
- Overview: components/media/index.md
- Audio Picker: components/media/audio-picker.md
- Camcorder: components/media/camcorder.md
- Camera: components/media/camera.md
- ExoPlayer: components/media/exoplayer.md
- Image Picker: components/media/image-picker.md
- Metadata: components/media/metadata.md
- OCR: components/media/ocr.md
- Player: components/media/player.md
- QR Code: components/media/qr-code.md
- Sound: components/media/sound.md
- Sound Recorder: components/media/sound-recorder.md
- Speech Recognizer: components/media/speech-recognizer.md
- Text To Speech: components/media/text-to-speech.md
- Video Picker: components/media/video-picker.md
- Video Player: components/media/video-player.md
- Yandex Translate: components/media/yandex-translate.md
- Drawing and Animation:
- Overview: components/drawing-and-animation/index.md
- Ball: components/drawing-and-animation/ball.md
- Canvas: components/drawing-and-animation/canvas.md
- Image Editor: components/drawing-and-animation/image-editor.md
- Image Sprite: components/drawing-and-animation/image-sprite.md
- Lottie: components/drawing-and-animation/lottie.md
- Maps:
- Overview: components/maps/index.md
- Circle: components/maps/circle.md
- Feature Collection: components/maps/feature-collection.md
- Line String: components/maps/line-string.md
- Map: components/maps/map.md
- Marker: components/maps/marker.md
- Polygon: components/maps/polygon.md
- Rectangle: components/maps/rectangle.md
- Sensors:
- Overview: components/sensors/index.md
- Accelerometer Sensor: components/sensors/accelerometer-sensor.md
- Barcode Scanner: components/sensors/barcode-scanner.md
- Clock: components/sensors/clock.md
- Fingerprint: components/sensors/fingerprint.md
- Gravity Sensor: components/sensors/gravity-sensor.md
- Gyroscope Sensor: components/sensors/gyroscope-sensor.md
- Hygrometer: components/sensors/hygrometer.md
- Light Sensor: components/sensors/light-sensor.md
- Location Sensor: components/sensors/location-sensor.md
- Magnetic Field Sensor: components/sensors/magnetic-field-sensor.md
- Near Field: components/sensors/near-field.md
- Orientation Sensor: components/sensors/orientation-sensor.md
- Pedometer: components/sensors/pedometer.md
- Pressure Sensor: components/sensors/pressure-sensor.md
- Proximity Sensor: components/sensors/proximity-sensor.md
- Sound Sensor: components/sensors/sound-sensor.md
- Temperature Sensor: components/sensors/temperature-sensor.md
- Social:
- Overview: components/social/index.md
- Contact Picker: components/social/contact-picker.md
- Email Picker: components/social/email-picker.md
- Phone Call: components/social/phone-call.md
- Phone Number Picker: components/social/phone-number-picker.md
- Push Notifications: components/social/push-notifications.md
- Sharing: components/social/sharing.md
- Texting: components/social/texting.md
- Twitter: components/social/twitter.md
- Storage:
- Overview: components/storage/index.md
- Cloudinary: components/storage/cloudinary.md
- File: components/storage/file.md
- Fusiontables Control: components/storage/fusiontables-control.md
- Spreadsheet: components/storage/spreadsheet.md
- SQLite: components/storage/sqlite.md
- Tiny DB: components/storage/tiny-db.md
- Tiny Web DB: components/storage/tiny-web-db.md
- Utilities:
- Overview: components/utilities/index.md
- Animation Utilities: components/utilities/animation-utilities.md
- Audio: components/utilities/audio.md
- Battery Utilities: components/utilities/battery-utilities.md
- Color Utilities: components/utilities/color-utilities.md
- Cryptography: components/utilities/cryptography.md
- Decoration: components/utilities/decoration.md
- Device Utilities: components/utilities/device-utilities.md
- Image Utilities: components/utilities/image-utilities.md
- JSON: components/utilities/json.md
- Keyguard Manager: components/utilities/keyguard-manager.md
- Package Utilities: components/utilities/package-utilities.md
- Resource Utilities: components/utilities/resource-utilities.md
- Screenshot: components/utilities/screenshot.md
- Shell: components/utilities/shell.md
- Wallpaper: components/utilities/wallpaper.md
- Dynamic Components:
- Overview: components/dynamic/index.md
- Dynamic Button: components/dynamic/dynamic-button.md
- Dynamic Card View: components/dynamic/dynamic-card-view.md
- Dynamic Image: components/dynamic/dynamic-image.md
- Dynamic Label: components/dynamic/dynamic-label.md
- Dynamic Space: components/dynamic/dynamic-space.md
- Dynamic Text Box: components/dynamic/dynamic-text-box.md
- Connectivity:
- Overview: components/connectivity/index.md
- Activity Starter: components/connectivity/activity-starter.md
- Arduino: components/connectivity/arduino.md
- Bluetooth Admin: components/connectivity/bluetooth-admin.md
- Bluetooth Client: components/connectivity/bluetooth-client.md
- Bluetooth Server: components/connectivity/bluetooth-server.md
- Download: components/connectivity/download.md
- FTP: components/connectivity/ftp.md
- Network: components/connectivity/network.md
- Web: components/connectivity/web.md
- WiFi: components/connectivity/wifi.md
- Google:
- Overview: components/google/index.md
- Firebase Authentication: components/google/firebase-authentication.md
- Firebase Database: components/google/firebase-database.md
- Firebase Remote Config: components/google/firebase-remote-config.md
- Firebase Storage: components/google/firebase-storage.md
- Google Account Picker: components/google/google-account-picker.md
- Google Maps: components/google/google-maps.md
- Google Play Games: components/google/google-play-games.md
- Youtube Player: components/google/youtube-player.md
- Monetization:
- Overview: components/monetization/index.md
- General:
- Overview: components/monetization/general/index.md
- In App Billing: components/monetization/general/in-app-billing.md
- Kodular Donations: components/monetization/general/kodular-donations.md
- Pollfish: components/monetization/general/pollfish.md
- Advertising:
- Overview: components/monetization/advertising/index.md
- AdColony Interstitial: components/monetization/advertising/adcolony-interstitial.md
- AdMob Banner: components/monetization/advertising/admob-banner.md
- AdMob Interstitial: components/monetization/advertising/admob-interstitial.md
- AdMob Rewarded Video: components/monetization/advertising/admob-rewarded-video.md
- Amazon Banner: components/monetization/advertising/amazon-banner.md
- Amazon Interstitial: components/monetization/advertising/amazon-interstitial.md
- AppLovin Interstitial: components/monetization/advertising/applovin-interstitial.md
- Facebook Banner: components/monetization/advertising/facebook-banner.md
- Facebook Interstitial: components/monetization/advertising/facebook-interstitial.md
- Facebook Rewarded Video: components/monetization/advertising/facebook-rewarded-video.md
- LeadBolt: components/monetization/advertising/leadbolt.md
- StartApp Banner: components/monetization/advertising/startapp-banner.md
- StartApp Interstitial: components/monetization/advertising/startapp-interstitial.md
- Unity Ads Interstitial: components/monetization/advertising/unity-ads-interstitial.md
- LEGO® MINDSTORMS®:
- Overview: components/lego-mindstorms/index.md
- EV3:
- Overview: components/lego-mindstorms/ev3/index.md
- EV3 Color Sensor: components/lego-mindstorms/ev3/ev3-color-sensor.md
- EV3 Commands: components/lego-mindstorms/ev3/ev3-commands.md
- EV3 Gyro Sensor: components/lego-mindstorms/ev3/ev3-gyro-sensor.md
- EV3 Motors: components/lego-mindstorms/ev3/ev3-motors.md
- EV3 Sound: components/lego-mindstorms/ev3/ev3-sound.md
- EV3 Touch Sensor: components/lego-mindstorms/ev3/ev3-touch-sensor.md
- EV3 UI: components/lego-mindstorms/ev3/ev3-ui.md
- EV3 Ultrasonic Sensor: components/lego-mindstorms/ev3/ev3-ultrasonic-sensor.md
- NXT:
- Overview: components/lego-mindstorms/nxt/index.md
- NXT Color Sensor: components/lego-mindstorms/nxt/nxt-color-sensor.md
- NXT Direct Commands: components/lego-mindstorms/nxt/nxt-direct-commands.md
- NXT Drive: components/lego-mindstorms/nxt/nxt-drive.md
- NXT Light Sensor: components/lego-mindstorms/nxt/nxt-light-sensor.md
- NXT Sound Sensor: components/lego-mindstorms/nxt/nxt-sound-sensor.md
- NXT Touch Sensor: components/lego-mindstorms/nxt/nxt-touch-sensor.md
- NXT Ultrasonic Sensor: components/lego-mindstorms/nxt/nxt-ultrasonic-sensor.md
- Experimental:
- Overview: components/experimental/index.md
- CloudDB: components/experimental/clouddb.md
- Custom Tabs: components/experimental/custom-tabs.md
- In-App Update: components/experimental/in-app-update.md
- Notification: components/experimental/notification.md
- Shortcut Badge: components/experimental/shortcut-badge.md
- Blocks:
- Overview: blocks/index.md
- Control: blocks/control.md
- Logic: blocks/logic.md
- Math: blocks/math.md
- Text: blocks/text.md
- Lists: blocks/lists.md
- Dictionaries: blocks/dictionaries.md
- Colors: blocks/colors.md
- Variables: blocks/variables.md
- Procedures: blocks/procedures.md
- Any Component: blocks/any-component.md
# Google Analyitcs
google_analytics:
- 'UA-102230060-7'
- 'auto'