├── .github ├── FUNDING.yml └── workflows │ └── ci.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── ISSUE_TEMPLATE.md ├── LICENSE ├── PULL_REQUEST_TEMPLATE.md ├── README.md ├── _config.yml ├── docs ├── CNAME ├── assets │ ├── css │ │ └── extra.css │ ├── favicon.ico │ ├── fonts │ │ ├── Jost-100-Hairline.otf │ │ ├── Jost-100-HairlineItalic.otf │ │ ├── Jost-200-Thin.otf │ │ ├── Jost-200-ThinItalic.otf │ │ ├── Jost-300-Light.otf │ │ ├── Jost-300-LightItalic.otf │ │ ├── Jost-400-Book.otf │ │ ├── Jost-400-BookItalic.otf │ │ ├── Jost-500-Medium.otf │ │ ├── Jost-500-MediumItalic.otf │ │ ├── Jost-600-Semi.otf │ │ ├── Jost-600-SemiItalic.otf │ │ ├── Jost-700-Bold.otf │ │ ├── Jost-700-BoldItalic.otf │ │ ├── Jost-800-Heavy.otf │ │ ├── Jost-800-HeavyItalic.otf │ │ ├── Jost-900-Black.otf │ │ └── Jost-900-BlackItalic.otf │ ├── images │ │ ├── blocks │ │ │ ├── colors │ │ │ │ ├── basiccolorblock.png │ │ │ │ ├── colorblock.gif │ │ │ │ ├── makecolor.png │ │ │ │ └── splitcolor.png │ │ │ ├── control │ │ │ │ ├── break.png │ │ │ │ ├── choose.png │ │ │ │ ├── closeapp.png │ │ │ │ ├── closescreen.png │ │ │ │ ├── closescreenwithplaintext.png │ │ │ │ ├── closescreenwithvalue.png │ │ │ │ ├── controls_for_each_dict.png │ │ │ │ ├── doreturn.png │ │ │ │ ├── evaluate.png │ │ │ │ ├── foreach.png │ │ │ │ ├── forrange.png │ │ │ │ ├── getplainstarttext.png │ │ │ │ ├── getstartvalue.png │ │ │ │ ├── if.gif │ │ │ │ ├── if.png │ │ │ │ ├── ifelse.png │ │ │ │ ├── ifelseif.png │ │ │ │ ├── openscreen.png │ │ │ │ ├── openscreenwithvalue.png │ │ │ │ └── while.png │ │ │ ├── dictionaries │ │ │ │ ├── alist-to-dict.png │ │ │ │ ├── combine-dicts.png │ │ │ │ ├── copy-dict.png │ │ │ │ ├── create-with.png │ │ │ │ ├── delete-value-for-key.png │ │ │ │ ├── dict-to-alist.png │ │ │ │ ├── get-keys.png │ │ │ │ ├── get-value-at-key-path.png │ │ │ │ ├── get-value-for-key.png │ │ │ │ ├── get-values.png │ │ │ │ ├── is-dict.png │ │ │ │ ├── is-key-in.png │ │ │ │ ├── make-a-dictionary.png │ │ │ │ ├── pair.png │ │ │ │ ├── set-value-for-key-path.png │ │ │ │ ├── set-value-for-key.png │ │ │ │ ├── size.png │ │ │ │ ├── walk-all.png │ │ │ │ └── walk-tree.png │ │ │ ├── lists │ │ │ │ ├── additems.png │ │ │ │ ├── append.png │ │ │ │ ├── copy.png │ │ │ │ ├── emptylist.png │ │ │ │ ├── indexinlist.png │ │ │ │ ├── inlist.png │ │ │ │ ├── insert.png │ │ │ │ ├── isalist.png │ │ │ │ ├── islistempty.png │ │ │ │ ├── joinwithseparator.png │ │ │ │ ├── lengthoflist.png │ │ │ │ ├── listfromcsvrow.png │ │ │ │ ├── listfromcsvtable.png │ │ │ │ ├── listtocsvrow.png │ │ │ │ ├── listtocsvtable.png │ │ │ │ ├── lookupinpairs.png │ │ │ │ ├── makealist.png │ │ │ │ ├── pickrandomitem.png │ │ │ │ ├── removeitem.png │ │ │ │ ├── replace.png │ │ │ │ ├── reverse.png │ │ │ │ └── selectlistitem.png │ │ │ ├── logic │ │ │ │ ├── and.png │ │ │ │ ├── equals.png │ │ │ │ ├── false.png │ │ │ │ ├── not.png │ │ │ │ ├── notequals.png │ │ │ │ ├── or.png │ │ │ │ └── true.png │ │ │ ├── math │ │ │ │ ├── abs.png │ │ │ │ ├── acos.png │ │ │ │ ├── asin.png │ │ │ │ ├── atan.png │ │ │ │ ├── atan2.png │ │ │ │ ├── bitwise_and.png │ │ │ │ ├── bitwise_ior.png │ │ │ │ ├── bitwise_xor.png │ │ │ │ ├── ceiling.png │ │ │ │ ├── convert.gif │ │ │ │ ├── convertdeg.png │ │ │ │ ├── convertnumber.png │ │ │ │ ├── convertrad.png │ │ │ │ ├── cos.png │ │ │ │ ├── divide.png │ │ │ │ ├── e.png │ │ │ │ ├── equal.png │ │ │ │ ├── equals.gif │ │ │ │ ├── exponent.png │ │ │ │ ├── floor.png │ │ │ │ ├── format.png │ │ │ │ ├── greater.png │ │ │ │ ├── greaterequal.png │ │ │ │ ├── isnumber.png │ │ │ │ ├── less.png │ │ │ │ ├── lessequal.png │ │ │ │ ├── log.png │ │ │ │ ├── max.png │ │ │ │ ├── min.png │ │ │ │ ├── minmax.gif │ │ │ │ ├── minus.png │ │ │ │ ├── modulo.gif │ │ │ │ ├── modulo.png │ │ │ │ ├── multiply.gif │ │ │ │ ├── multiply.png │ │ │ │ ├── neg.png │ │ │ │ ├── notequal.png │ │ │ │ ├── number.png │ │ │ │ ├── plus.gif │ │ │ │ ├── plus.png │ │ │ │ ├── quotient.png │ │ │ │ ├── randomfrac.png │ │ │ │ ├── randomint.png │ │ │ │ ├── randomseed.png │ │ │ │ ├── remainder.png │ │ │ │ ├── round.png │ │ │ │ ├── sin.gif │ │ │ │ ├── sin.png │ │ │ │ ├── sqrt.gif │ │ │ │ ├── sqrt.png │ │ │ │ └── tan.png │ │ │ ├── procedure │ │ │ │ ├── calldo.png │ │ │ │ ├── callreturn.png │ │ │ │ ├── do.png │ │ │ │ └── return.png │ │ │ ├── text │ │ │ │ ├── compare.gif │ │ │ │ ├── contains.png │ │ │ │ ├── downcase.png │ │ │ │ ├── isempty.png │ │ │ │ ├── isstring.png │ │ │ │ ├── join.png │ │ │ │ ├── length.png │ │ │ │ ├── obfuscated.png │ │ │ │ ├── replaceall.png │ │ │ │ ├── segment.png │ │ │ │ ├── split.png │ │ │ │ ├── splitAtAny.png │ │ │ │ ├── splitAtFirstOfAny.png │ │ │ │ ├── splitatfirst.png │ │ │ │ ├── splitatspaces.png │ │ │ │ ├── startsat.png │ │ │ │ ├── string.png │ │ │ │ ├── trim.png │ │ │ │ └── upcase.png │ │ │ └── variables │ │ │ │ ├── get.png │ │ │ │ ├── initializeglobal.png │ │ │ │ ├── initializelocaldo.png │ │ │ │ ├── initializelocalreturn.png │ │ │ │ └── set.png │ │ ├── components │ │ │ └── screen │ │ │ │ └── screen-book-analogy.png │ │ ├── guides │ │ │ ├── dynamic-cards │ │ │ │ ├── all-blocks.png │ │ │ │ ├── d_with-components.png │ │ │ │ ├── e_screen-initialize.png │ │ │ │ ├── e_web-got-text.png │ │ │ │ ├── f_create-card.png │ │ │ │ ├── f_populate-news-articles-with-call.png │ │ │ │ ├── f_populate-news-articles.png │ │ │ │ ├── m_create-dynamic-card-view.png │ │ │ │ ├── m_create-dynamic-description.png │ │ │ │ ├── m_create-dynamic-image.png │ │ │ │ ├── m_create-dynamic-label.png │ │ │ │ ├── pr_screenshot.png │ │ │ │ └── v_result.png │ │ │ ├── firebase-rules │ │ │ │ ├── all-blocks.png │ │ │ │ ├── d_preview.png │ │ │ │ ├── e_current-user-success.png │ │ │ │ ├── e_getdetails-click.png │ │ │ │ ├── e_got-value-2.png │ │ │ │ ├── e_got-value.png │ │ │ │ ├── e_login-success.png │ │ │ │ ├── e_signinbutton-click.png │ │ │ │ ├── e_updatedetailsbutton-click.png │ │ │ │ ├── ext_fauth-google.png │ │ │ │ ├── ext_fdb-data.png │ │ │ │ ├── ext_fdb-home.png │ │ │ │ ├── ext_fdb-rules.png │ │ │ │ ├── m_append-value-2.png │ │ │ │ ├── m_append-value.png │ │ │ │ ├── m_get-value-2.png │ │ │ │ ├── m_get-value-3.png │ │ │ │ ├── m_get-value-4.png │ │ │ │ ├── m_get-value.png │ │ │ │ ├── m_store-value-2.png │ │ │ │ ├── m_store-value.png │ │ │ │ ├── v_names.png │ │ │ │ └── v_uids.png │ │ │ ├── monetization │ │ │ │ ├── admapp.png │ │ │ │ ├── approved.png │ │ │ │ ├── creator.png │ │ │ │ ├── email.png │ │ │ │ └── preinvite.png │ │ │ ├── pollfish │ │ │ │ ├── blocks.png │ │ │ │ ├── d_pollfish-1.jpg │ │ │ │ ├── d_pollfish-2.jpg │ │ │ │ ├── e_button-click.png │ │ │ │ ├── e_survey-completed.png │ │ │ │ ├── e_survey-not-available.png │ │ │ │ ├── e_survey-received.png │ │ │ │ ├── e_user-not-eligible.png │ │ │ │ ├── e_user-rejected.png │ │ │ │ ├── ext_api.jpg │ │ │ │ ├── ext_create.jpg │ │ │ │ ├── ext_dashboard.jpg │ │ │ │ ├── ext_signup.jpg │ │ │ │ ├── p_survey-not-available.png │ │ │ │ ├── pr_reward.png │ │ │ │ ├── pr_survey.png │ │ │ │ └── v_survey-received.png │ │ │ ├── remote-config │ │ │ │ ├── all-blocks.png │ │ │ │ ├── d_preview.png │ │ │ │ ├── e_fetch-success.png │ │ │ │ ├── e_item-selected.png │ │ │ │ ├── e_screen-initialize.png │ │ │ │ ├── e_tab-item-selected.png │ │ │ │ ├── ext_frc-condition.gif │ │ │ │ ├── ext_frc-home.png │ │ │ │ ├── ext_frc-param-name.png │ │ │ │ ├── ext_frc-param-value.png │ │ │ │ ├── ext_frc-publish.png │ │ │ │ ├── ext_frc-rollback.gif │ │ │ │ ├── ext_frc-rollout.gif │ │ │ │ ├── m_add-item.png │ │ │ │ ├── m_fetch.png │ │ │ │ ├── p_select-arrangement.png │ │ │ │ ├── pr_bottom-nav.png │ │ │ │ └── pr_tab-layout.png │ │ │ └── targeted-notifications │ │ │ │ ├── d_preview.png │ │ │ │ ├── e_screen-initialize.png │ │ │ │ ├── ext_ons-audience-selection.png │ │ │ │ ├── ext_ons-audience.png │ │ │ │ ├── ext_ons-home.png │ │ │ │ ├── ext_ons-messages.png │ │ │ │ ├── ext_ons-pro.png │ │ │ │ └── ext_ons-segment.png │ │ ├── other │ │ │ ├── backpack-1.png │ │ │ ├── backpack-2.png │ │ │ ├── backpack-3.png │ │ │ ├── backpack-4.png │ │ │ ├── backpack-5.png │ │ │ ├── backpack-6.png │ │ │ ├── components-blocks-illustration.jpg │ │ │ ├── designer-tagged-with-numbers.jpg │ │ │ ├── event-block-example.png │ │ │ ├── live-development │ │ │ │ ├── index-1.png │ │ │ │ ├── index-2.png │ │ │ │ ├── usb-1.png │ │ │ │ ├── usb-2.png │ │ │ │ ├── wifi-1.png │ │ │ │ ├── wifi-2.png │ │ │ │ └── wifi-3.png │ │ │ ├── method-block-example.png │ │ │ ├── property-block-example.jpg │ │ │ └── resources │ │ │ │ ├── kodularconceptcard01.png │ │ │ │ ├── kodularconceptcard02.png │ │ │ │ ├── kodularconceptcard03.png │ │ │ │ ├── kodularconceptcard04.png │ │ │ │ ├── kodularconceptcard05.png │ │ │ │ ├── kodularconceptcard06.png │ │ │ │ ├── kodularconceptcard07.png │ │ │ │ ├── kodularconceptcard08.png │ │ │ │ ├── kodularconceptcard09.png │ │ │ │ ├── kodularconceptcard10.png │ │ │ │ ├── kodularconceptcard11.png │ │ │ │ ├── kodularconceptcard12.png │ │ │ │ ├── kodularconceptcard13.png │ │ │ │ ├── kodularconceptcard14.png │ │ │ │ └── kodularconceptcard15.png │ │ └── support │ │ │ └── adm │ │ │ ├── balance.png │ │ │ └── withdraw.png │ ├── js │ │ ├── blockly_compressed.js │ │ └── extra.js │ └── logo.png ├── blocks │ ├── any-component.md │ ├── colors.md │ ├── control.md │ ├── dictionaries.md │ ├── index.md │ ├── lists.md │ ├── logic.md │ ├── math.md │ ├── procedures.md │ ├── text.md │ └── variables.md ├── components │ ├── connectivity │ │ ├── activity-starter.md │ │ ├── arduino.md │ │ ├── bluetooth-admin.md │ │ ├── bluetooth-client.md │ │ ├── bluetooth-server.md │ │ ├── download.md │ │ ├── ftp.md │ │ ├── index.md │ │ ├── network.md │ │ ├── web.md │ │ └── wifi.md │ ├── drawing-and-animation │ │ ├── ball.md │ │ ├── canvas.md │ │ ├── image-editor.md │ │ ├── image-sprite.md │ │ ├── index.md │ │ └── lottie.md │ ├── dynamic │ │ ├── dynamic-button.md │ │ ├── dynamic-card-view.md │ │ ├── dynamic-image.md │ │ ├── dynamic-label.md │ │ ├── dynamic-space.md │ │ ├── dynamic-text-box.md │ │ └── index.md │ ├── experimental │ │ ├── clouddb.md │ │ ├── custom-tabs.md │ │ ├── exoplayer.md │ │ ├── index.md │ │ ├── notification.md │ │ └── shortcut-badge.md │ ├── google │ │ ├── firebase-authentication.md │ │ ├── firebase-database.md │ │ ├── firebase-remote-config.md │ │ ├── firebase-storage.md │ │ ├── google-account-picker.md │ │ ├── google-maps.md │ │ ├── google-play-games.md │ │ ├── google-recaptcha.md │ │ ├── in-app-review.md │ │ ├── in-app-update.md │ │ ├── inapp-review.md │ │ ├── inapp-update.md │ │ ├── index.md │ │ ├── play-integrity.md │ │ └── youtube-player.md │ ├── index.md │ ├── layout │ │ ├── general │ │ │ ├── card-view.md │ │ │ ├── grid-view.md │ │ │ ├── horizontal-arrangement.md │ │ │ ├── horizontal-scroll-arrangement.md │ │ │ ├── index.md │ │ │ ├── space.md │ │ │ ├── swipe-refresh-layout.md │ │ │ ├── table-arrangement.md │ │ │ ├── vertical-arrangement.md │ │ │ └── vertical-scroll-arrangement.md │ │ ├── index.md │ │ ├── lists │ │ │ ├── index.md │ │ │ ├── list-view-image-and-text.md │ │ │ └── list-view.md │ │ ├── navigation │ │ │ ├── bottom-navigation.md │ │ │ ├── index.md │ │ │ ├── side-menu-layout.md │ │ │ ├── tab-layout.md │ │ │ └── view-pager.md │ │ └── views │ │ │ ├── bottom-sheet.md │ │ │ ├── chat-view.md │ │ │ ├── gallery-viewer.md │ │ │ ├── index.md │ │ │ ├── surface-view.md │ │ │ ├── view-flipper.md │ │ │ └── web-viewer.md │ ├── lego-mindstorms │ │ ├── ev3 │ │ │ ├── ev3-color-sensor.md │ │ │ ├── ev3-commands.md │ │ │ ├── ev3-gyro-sensor.md │ │ │ ├── ev3-motors.md │ │ │ ├── ev3-sound.md │ │ │ ├── ev3-touch-sensor.md │ │ │ ├── ev3-ui.md │ │ │ ├── ev3-ultrasonic-sensor.md │ │ │ └── index.md │ │ ├── index.md │ │ └── nxt │ │ │ ├── index.md │ │ │ ├── nxt-color-sensor.md │ │ │ ├── nxt-direct-commands.md │ │ │ ├── nxt-drive.md │ │ │ ├── nxt-light-sensor.md │ │ │ ├── nxt-sound-sensor.md │ │ │ ├── nxt-touch-sensor.md │ │ │ └── nxt-ultrasonic-sensor.md │ ├── maps │ │ ├── circle.md │ │ ├── feature-collection.md │ │ ├── index.md │ │ ├── line-string.md │ │ ├── map.md │ │ ├── marker.md │ │ ├── navigation.md │ │ ├── polygon.md │ │ └── rectangle.md │ ├── media │ │ ├── audio-picker.md │ │ ├── camcorder.md │ │ ├── camera.md │ │ ├── image-picker.md │ │ ├── index.md │ │ ├── metadata.md │ │ ├── ocr.md │ │ ├── player.md │ │ ├── qr-code.md │ │ ├── sound-recorder.md │ │ ├── sound.md │ │ ├── speech-recognizer.md │ │ ├── text-to-speech.md │ │ ├── video-picker.md │ │ ├── video-player.md │ │ └── yandex-translate.md │ ├── mkdocs.yml │ ├── monetization │ │ ├── advertising │ │ │ ├── adcolony-interstitial.md │ │ │ ├── admob-app-open.md │ │ │ ├── admob-banner.md │ │ │ ├── admob-interstitial.md │ │ │ ├── admob-native-ad-layout.md │ │ │ ├── admob-rewarded-interstitial.md │ │ │ ├── admob-rewarded-video.md │ │ │ ├── admob-rewarded.md │ │ │ ├── amazon-banner.md │ │ │ ├── amazon-interstitial.md │ │ │ ├── applovin-interstitial.md │ │ │ ├── facebook-banner.md │ │ │ ├── facebook-interstitial.md │ │ │ ├── facebook-rewarded-video.md │ │ │ ├── google-ad-manager-app-open.md │ │ │ ├── google-ad-manager-banner.md │ │ │ ├── google-ad-manager-interstitial.md │ │ │ ├── google-ad-manager-native-ad-layout.md │ │ │ ├── google-ad-manager-rewarded-interstitial.md │ │ │ ├── google-ad-manager-rewarded.md │ │ │ ├── index.md │ │ │ ├── leadbolt.md │ │ │ ├── startapp-banner.md │ │ │ └── startapp-interstitial.md │ │ ├── general │ │ │ ├── in-app-billing.md │ │ │ ├── index.md │ │ │ └── pollfish.md │ │ └── index.md │ ├── screen.md │ ├── sensors │ │ ├── accelerometer-sensor.md │ │ ├── barcode-scanner.md │ │ ├── clock.md │ │ ├── fingerprint.md │ │ ├── gravity-sensor.md │ │ ├── gyroscope-sensor.md │ │ ├── hygrometer.md │ │ ├── index.md │ │ ├── light-sensor.md │ │ ├── location-sensor.md │ │ ├── magnetic-field-sensor.md │ │ ├── near-field.md │ │ ├── orientation-sensor.md │ │ ├── pedometer.md │ │ ├── pressure-sensor.md │ │ ├── proximity-sensor.md │ │ ├── sound-sensor.md │ │ └── temperature-sensor.md │ ├── social │ │ ├── contact-picker.md │ │ ├── email-picker.md │ │ ├── index.md │ │ ├── onesignal-inapp-messages.md │ │ ├── onesignal-management.md │ │ ├── onesignal-notifications.md │ │ ├── phone-call.md │ │ ├── phone-number-picker.md │ │ ├── sharing.md │ │ ├── texting.md │ │ └── twitter.md │ ├── storage │ │ ├── cloudinary.md │ │ ├── file.md │ │ ├── index.md │ │ ├── spreadsheet.md │ │ ├── sqlite.md │ │ ├── tiny-db.md │ │ └── tiny-web-db.md │ ├── user-interface │ │ ├── button.md │ │ ├── checkbox.md │ │ ├── circular-progress.md │ │ ├── custom-progress.md │ │ ├── date-picker.md │ │ ├── floating-action-button.md │ │ ├── image.md │ │ ├── index.md │ │ ├── label.md │ │ ├── linear-progressbar.md │ │ ├── list-picker.md │ │ ├── notifier.md │ │ ├── radio-button.md │ │ ├── rating-bar.md │ │ ├── slider.md │ │ ├── snackbar.md │ │ ├── spinner.md │ │ ├── spotlight.md │ │ ├── state-progress-bar.md │ │ ├── switch.md │ │ ├── text-box.md │ │ └── time-picker.md │ └── utilities │ │ ├── animation-utilities.md │ │ ├── audio.md │ │ ├── battery-utilities.md │ │ ├── color-utilities.md │ │ ├── cryptography.md │ │ ├── decoration.md │ │ ├── device-utilities.md │ │ ├── image-utilities.md │ │ ├── index.md │ │ ├── keyguard-manager.md │ │ ├── package-utilities.md │ │ ├── resource-utilities.md │ │ ├── screenshot.md │ │ ├── shell.md │ │ └── wallpaper.md ├── guides │ ├── backpack.md │ ├── component-examples │ │ ├── dynamic-cards.md │ │ ├── firebase-rules.md │ │ ├── pollfish.md │ │ ├── remote-config.md │ │ ├── securing-app.md │ │ └── targeted-notifications.md │ ├── concept-cards.md │ ├── extensions │ │ ├── create-extensions.md │ │ └── kodular-methods.md │ ├── hello-world.md │ ├── index.md │ ├── keyboard-shortcuts.md │ ├── live-development │ │ ├── index.md │ │ ├── usb.md │ │ └── wifi.md │ ├── monetization-old.md │ └── monetization.md ├── index.md ├── media │ ├── aia │ │ ├── dynamic_cards.aia │ │ ├── firebase_rules.aia │ │ ├── pollfish.aia │ │ └── remote_config.aia │ └── apk │ │ ├── remote_config.apk │ │ └── targeted_notifications.apk ├── pricing.md ├── release-notes │ ├── 202508.md │ ├── 202510.md │ ├── andromeda.md │ ├── butterfly.md │ ├── chamaeleon.md │ ├── draco.md │ ├── eagle.md │ ├── fenix.md │ └── index.md ├── support │ └── index.md └── terms-of-service.md ├── extras ├── adcolony interstitial │ └── extras.html ├── admob banner │ └── extras.html ├── admob interstitial │ └── extras.html ├── admob rewarded video │ └── extras.html ├── amazon banner │ └── extras.html ├── amazon interstitial │ └── extras.html ├── applovin interstitial │ └── extras.html ├── banner ad │ └── extras.html ├── example.html ├── facebook banner │ └── extras.html ├── facebook interstitial │ └── extras.html ├── facebook rewarded video │ └── extras.html ├── interstitial ad │ └── extras.html ├── leadbolt │ └── extras.html ├── rewarded ad │ └── extras.html ├── screen │ ├── extras.html │ └── screen-book-analogy.png ├── startapp banner │ └── extras.html ├── startapp interstitial │ └── extras.html ├── unity banner │ └── extras.html └── unity interstitial │ └── extras.html ├── makeroid_theme └── main.html ├── mise.toml ├── mkdocs.yml └── requirements.txt /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/LICENSE -------------------------------------------------------------------------------- /PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- 1 | gems: 2 | - jekyll-redirect-from -------------------------------------------------------------------------------- /docs/CNAME: -------------------------------------------------------------------------------- 1 | docs.kodular.io 2 | -------------------------------------------------------------------------------- /docs/assets/css/extra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/css/extra.css -------------------------------------------------------------------------------- /docs/assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/favicon.ico -------------------------------------------------------------------------------- /docs/assets/fonts/Jost-100-Hairline.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/fonts/Jost-100-Hairline.otf -------------------------------------------------------------------------------- /docs/assets/fonts/Jost-100-HairlineItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/fonts/Jost-100-HairlineItalic.otf -------------------------------------------------------------------------------- /docs/assets/fonts/Jost-200-Thin.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/fonts/Jost-200-Thin.otf -------------------------------------------------------------------------------- /docs/assets/fonts/Jost-200-ThinItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/fonts/Jost-200-ThinItalic.otf -------------------------------------------------------------------------------- /docs/assets/fonts/Jost-300-Light.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/fonts/Jost-300-Light.otf -------------------------------------------------------------------------------- /docs/assets/fonts/Jost-300-LightItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/fonts/Jost-300-LightItalic.otf -------------------------------------------------------------------------------- /docs/assets/fonts/Jost-400-Book.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/fonts/Jost-400-Book.otf -------------------------------------------------------------------------------- /docs/assets/fonts/Jost-400-BookItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/fonts/Jost-400-BookItalic.otf -------------------------------------------------------------------------------- /docs/assets/fonts/Jost-500-Medium.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/fonts/Jost-500-Medium.otf -------------------------------------------------------------------------------- /docs/assets/fonts/Jost-500-MediumItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/fonts/Jost-500-MediumItalic.otf -------------------------------------------------------------------------------- /docs/assets/fonts/Jost-600-Semi.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/fonts/Jost-600-Semi.otf -------------------------------------------------------------------------------- /docs/assets/fonts/Jost-600-SemiItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/fonts/Jost-600-SemiItalic.otf -------------------------------------------------------------------------------- /docs/assets/fonts/Jost-700-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/fonts/Jost-700-Bold.otf -------------------------------------------------------------------------------- /docs/assets/fonts/Jost-700-BoldItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/fonts/Jost-700-BoldItalic.otf -------------------------------------------------------------------------------- /docs/assets/fonts/Jost-800-Heavy.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/fonts/Jost-800-Heavy.otf -------------------------------------------------------------------------------- /docs/assets/fonts/Jost-800-HeavyItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/fonts/Jost-800-HeavyItalic.otf -------------------------------------------------------------------------------- /docs/assets/fonts/Jost-900-Black.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/fonts/Jost-900-Black.otf -------------------------------------------------------------------------------- /docs/assets/fonts/Jost-900-BlackItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/fonts/Jost-900-BlackItalic.otf -------------------------------------------------------------------------------- /docs/assets/images/blocks/colors/basiccolorblock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/colors/basiccolorblock.png -------------------------------------------------------------------------------- /docs/assets/images/blocks/colors/colorblock.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/colors/colorblock.gif -------------------------------------------------------------------------------- /docs/assets/images/blocks/colors/makecolor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/colors/makecolor.png -------------------------------------------------------------------------------- /docs/assets/images/blocks/colors/splitcolor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/colors/splitcolor.png -------------------------------------------------------------------------------- /docs/assets/images/blocks/control/break.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/control/break.png -------------------------------------------------------------------------------- /docs/assets/images/blocks/control/choose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/control/choose.png -------------------------------------------------------------------------------- /docs/assets/images/blocks/control/closeapp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/control/closeapp.png -------------------------------------------------------------------------------- /docs/assets/images/blocks/control/closescreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/control/closescreen.png -------------------------------------------------------------------------------- /docs/assets/images/blocks/control/closescreenwithplaintext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/control/closescreenwithplaintext.png -------------------------------------------------------------------------------- /docs/assets/images/blocks/control/closescreenwithvalue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/control/closescreenwithvalue.png -------------------------------------------------------------------------------- /docs/assets/images/blocks/control/controls_for_each_dict.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/control/controls_for_each_dict.png -------------------------------------------------------------------------------- /docs/assets/images/blocks/control/doreturn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/control/doreturn.png -------------------------------------------------------------------------------- /docs/assets/images/blocks/control/evaluate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/control/evaluate.png -------------------------------------------------------------------------------- /docs/assets/images/blocks/control/foreach.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/control/foreach.png -------------------------------------------------------------------------------- /docs/assets/images/blocks/control/forrange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/control/forrange.png -------------------------------------------------------------------------------- /docs/assets/images/blocks/control/getplainstarttext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/control/getplainstarttext.png -------------------------------------------------------------------------------- /docs/assets/images/blocks/control/getstartvalue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/control/getstartvalue.png -------------------------------------------------------------------------------- /docs/assets/images/blocks/control/if.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/control/if.gif -------------------------------------------------------------------------------- /docs/assets/images/blocks/control/if.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/control/if.png -------------------------------------------------------------------------------- /docs/assets/images/blocks/control/ifelse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/control/ifelse.png -------------------------------------------------------------------------------- /docs/assets/images/blocks/control/ifelseif.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/control/ifelseif.png -------------------------------------------------------------------------------- /docs/assets/images/blocks/control/openscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/control/openscreen.png -------------------------------------------------------------------------------- /docs/assets/images/blocks/control/openscreenwithvalue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/control/openscreenwithvalue.png -------------------------------------------------------------------------------- /docs/assets/images/blocks/control/while.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/control/while.png -------------------------------------------------------------------------------- /docs/assets/images/blocks/dictionaries/alist-to-dict.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/dictionaries/alist-to-dict.png -------------------------------------------------------------------------------- /docs/assets/images/blocks/dictionaries/combine-dicts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/dictionaries/combine-dicts.png -------------------------------------------------------------------------------- /docs/assets/images/blocks/dictionaries/copy-dict.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/dictionaries/copy-dict.png -------------------------------------------------------------------------------- /docs/assets/images/blocks/dictionaries/create-with.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/dictionaries/create-with.png -------------------------------------------------------------------------------- /docs/assets/images/blocks/dictionaries/delete-value-for-key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/dictionaries/delete-value-for-key.png -------------------------------------------------------------------------------- /docs/assets/images/blocks/dictionaries/dict-to-alist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/dictionaries/dict-to-alist.png -------------------------------------------------------------------------------- /docs/assets/images/blocks/dictionaries/get-keys.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/dictionaries/get-keys.png -------------------------------------------------------------------------------- /docs/assets/images/blocks/dictionaries/get-value-at-key-path.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/dictionaries/get-value-at-key-path.png -------------------------------------------------------------------------------- /docs/assets/images/blocks/dictionaries/get-value-for-key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/dictionaries/get-value-for-key.png -------------------------------------------------------------------------------- /docs/assets/images/blocks/dictionaries/get-values.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/dictionaries/get-values.png -------------------------------------------------------------------------------- /docs/assets/images/blocks/dictionaries/is-dict.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/dictionaries/is-dict.png -------------------------------------------------------------------------------- /docs/assets/images/blocks/dictionaries/is-key-in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/dictionaries/is-key-in.png -------------------------------------------------------------------------------- /docs/assets/images/blocks/dictionaries/make-a-dictionary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/dictionaries/make-a-dictionary.png -------------------------------------------------------------------------------- /docs/assets/images/blocks/dictionaries/pair.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/dictionaries/pair.png -------------------------------------------------------------------------------- /docs/assets/images/blocks/dictionaries/set-value-for-key-path.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/dictionaries/set-value-for-key-path.png -------------------------------------------------------------------------------- /docs/assets/images/blocks/dictionaries/set-value-for-key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/dictionaries/set-value-for-key.png -------------------------------------------------------------------------------- /docs/assets/images/blocks/dictionaries/size.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/dictionaries/size.png -------------------------------------------------------------------------------- /docs/assets/images/blocks/dictionaries/walk-all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/dictionaries/walk-all.png -------------------------------------------------------------------------------- /docs/assets/images/blocks/dictionaries/walk-tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/dictionaries/walk-tree.png -------------------------------------------------------------------------------- /docs/assets/images/blocks/lists/additems.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/lists/additems.png -------------------------------------------------------------------------------- /docs/assets/images/blocks/lists/append.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/lists/append.png -------------------------------------------------------------------------------- /docs/assets/images/blocks/lists/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/lists/copy.png -------------------------------------------------------------------------------- /docs/assets/images/blocks/lists/emptylist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/lists/emptylist.png -------------------------------------------------------------------------------- /docs/assets/images/blocks/lists/indexinlist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/lists/indexinlist.png -------------------------------------------------------------------------------- /docs/assets/images/blocks/lists/inlist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/lists/inlist.png -------------------------------------------------------------------------------- /docs/assets/images/blocks/lists/insert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/lists/insert.png -------------------------------------------------------------------------------- /docs/assets/images/blocks/lists/isalist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/lists/isalist.png -------------------------------------------------------------------------------- /docs/assets/images/blocks/lists/islistempty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/lists/islistempty.png -------------------------------------------------------------------------------- /docs/assets/images/blocks/lists/joinwithseparator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/lists/joinwithseparator.png -------------------------------------------------------------------------------- /docs/assets/images/blocks/lists/lengthoflist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/lists/lengthoflist.png -------------------------------------------------------------------------------- /docs/assets/images/blocks/lists/listfromcsvrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/lists/listfromcsvrow.png -------------------------------------------------------------------------------- /docs/assets/images/blocks/lists/listfromcsvtable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/lists/listfromcsvtable.png -------------------------------------------------------------------------------- /docs/assets/images/blocks/lists/listtocsvrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/lists/listtocsvrow.png -------------------------------------------------------------------------------- /docs/assets/images/blocks/lists/listtocsvtable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/lists/listtocsvtable.png -------------------------------------------------------------------------------- /docs/assets/images/blocks/lists/lookupinpairs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/lists/lookupinpairs.png -------------------------------------------------------------------------------- /docs/assets/images/blocks/lists/makealist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/lists/makealist.png -------------------------------------------------------------------------------- /docs/assets/images/blocks/lists/pickrandomitem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/lists/pickrandomitem.png -------------------------------------------------------------------------------- /docs/assets/images/blocks/lists/removeitem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/lists/removeitem.png -------------------------------------------------------------------------------- /docs/assets/images/blocks/lists/replace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/lists/replace.png -------------------------------------------------------------------------------- /docs/assets/images/blocks/lists/reverse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/lists/reverse.png -------------------------------------------------------------------------------- /docs/assets/images/blocks/lists/selectlistitem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/lists/selectlistitem.png -------------------------------------------------------------------------------- /docs/assets/images/blocks/logic/and.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/logic/and.png -------------------------------------------------------------------------------- /docs/assets/images/blocks/logic/equals.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/logic/equals.png -------------------------------------------------------------------------------- /docs/assets/images/blocks/logic/false.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/logic/false.png -------------------------------------------------------------------------------- /docs/assets/images/blocks/logic/not.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/logic/not.png -------------------------------------------------------------------------------- /docs/assets/images/blocks/logic/notequals.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/logic/notequals.png -------------------------------------------------------------------------------- /docs/assets/images/blocks/logic/or.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/logic/or.png -------------------------------------------------------------------------------- /docs/assets/images/blocks/logic/true.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/logic/true.png -------------------------------------------------------------------------------- /docs/assets/images/blocks/math/abs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/math/abs.png -------------------------------------------------------------------------------- /docs/assets/images/blocks/math/acos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/math/acos.png -------------------------------------------------------------------------------- /docs/assets/images/blocks/math/asin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/math/asin.png -------------------------------------------------------------------------------- /docs/assets/images/blocks/math/atan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/math/atan.png -------------------------------------------------------------------------------- /docs/assets/images/blocks/math/atan2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/math/atan2.png -------------------------------------------------------------------------------- /docs/assets/images/blocks/math/bitwise_and.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/math/bitwise_and.png -------------------------------------------------------------------------------- /docs/assets/images/blocks/math/bitwise_ior.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/math/bitwise_ior.png -------------------------------------------------------------------------------- /docs/assets/images/blocks/math/bitwise_xor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/math/bitwise_xor.png -------------------------------------------------------------------------------- /docs/assets/images/blocks/math/ceiling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/math/ceiling.png -------------------------------------------------------------------------------- /docs/assets/images/blocks/math/convert.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/math/convert.gif -------------------------------------------------------------------------------- /docs/assets/images/blocks/math/convertdeg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/math/convertdeg.png -------------------------------------------------------------------------------- /docs/assets/images/blocks/math/convertnumber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/math/convertnumber.png -------------------------------------------------------------------------------- /docs/assets/images/blocks/math/convertrad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/math/convertrad.png -------------------------------------------------------------------------------- /docs/assets/images/blocks/math/cos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/math/cos.png -------------------------------------------------------------------------------- /docs/assets/images/blocks/math/divide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/math/divide.png -------------------------------------------------------------------------------- /docs/assets/images/blocks/math/e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/math/e.png -------------------------------------------------------------------------------- /docs/assets/images/blocks/math/equal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/math/equal.png -------------------------------------------------------------------------------- /docs/assets/images/blocks/math/equals.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/math/equals.gif -------------------------------------------------------------------------------- /docs/assets/images/blocks/math/exponent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/math/exponent.png -------------------------------------------------------------------------------- /docs/assets/images/blocks/math/floor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/math/floor.png -------------------------------------------------------------------------------- /docs/assets/images/blocks/math/format.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/math/format.png -------------------------------------------------------------------------------- /docs/assets/images/blocks/math/greater.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/math/greater.png -------------------------------------------------------------------------------- /docs/assets/images/blocks/math/greaterequal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/math/greaterequal.png -------------------------------------------------------------------------------- /docs/assets/images/blocks/math/isnumber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/math/isnumber.png -------------------------------------------------------------------------------- /docs/assets/images/blocks/math/less.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/math/less.png -------------------------------------------------------------------------------- /docs/assets/images/blocks/math/lessequal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/math/lessequal.png -------------------------------------------------------------------------------- /docs/assets/images/blocks/math/log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/math/log.png -------------------------------------------------------------------------------- /docs/assets/images/blocks/math/max.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/math/max.png -------------------------------------------------------------------------------- /docs/assets/images/blocks/math/min.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/math/min.png -------------------------------------------------------------------------------- /docs/assets/images/blocks/math/minmax.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/math/minmax.gif -------------------------------------------------------------------------------- /docs/assets/images/blocks/math/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/math/minus.png -------------------------------------------------------------------------------- /docs/assets/images/blocks/math/modulo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/math/modulo.gif -------------------------------------------------------------------------------- /docs/assets/images/blocks/math/modulo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/math/modulo.png -------------------------------------------------------------------------------- /docs/assets/images/blocks/math/multiply.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/math/multiply.gif -------------------------------------------------------------------------------- /docs/assets/images/blocks/math/multiply.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/math/multiply.png -------------------------------------------------------------------------------- /docs/assets/images/blocks/math/neg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/math/neg.png -------------------------------------------------------------------------------- /docs/assets/images/blocks/math/notequal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/math/notequal.png -------------------------------------------------------------------------------- /docs/assets/images/blocks/math/number.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/math/number.png -------------------------------------------------------------------------------- /docs/assets/images/blocks/math/plus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/math/plus.gif -------------------------------------------------------------------------------- /docs/assets/images/blocks/math/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/math/plus.png -------------------------------------------------------------------------------- /docs/assets/images/blocks/math/quotient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/math/quotient.png -------------------------------------------------------------------------------- /docs/assets/images/blocks/math/randomfrac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/math/randomfrac.png -------------------------------------------------------------------------------- /docs/assets/images/blocks/math/randomint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/math/randomint.png -------------------------------------------------------------------------------- /docs/assets/images/blocks/math/randomseed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/math/randomseed.png -------------------------------------------------------------------------------- /docs/assets/images/blocks/math/remainder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/math/remainder.png -------------------------------------------------------------------------------- /docs/assets/images/blocks/math/round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/math/round.png -------------------------------------------------------------------------------- /docs/assets/images/blocks/math/sin.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/math/sin.gif -------------------------------------------------------------------------------- /docs/assets/images/blocks/math/sin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/math/sin.png -------------------------------------------------------------------------------- /docs/assets/images/blocks/math/sqrt.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/math/sqrt.gif -------------------------------------------------------------------------------- /docs/assets/images/blocks/math/sqrt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/math/sqrt.png -------------------------------------------------------------------------------- /docs/assets/images/blocks/math/tan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/math/tan.png -------------------------------------------------------------------------------- /docs/assets/images/blocks/procedure/calldo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/procedure/calldo.png -------------------------------------------------------------------------------- /docs/assets/images/blocks/procedure/callreturn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/procedure/callreturn.png -------------------------------------------------------------------------------- /docs/assets/images/blocks/procedure/do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/procedure/do.png -------------------------------------------------------------------------------- /docs/assets/images/blocks/procedure/return.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/procedure/return.png -------------------------------------------------------------------------------- /docs/assets/images/blocks/text/compare.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/text/compare.gif -------------------------------------------------------------------------------- /docs/assets/images/blocks/text/contains.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/text/contains.png -------------------------------------------------------------------------------- /docs/assets/images/blocks/text/downcase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/text/downcase.png -------------------------------------------------------------------------------- /docs/assets/images/blocks/text/isempty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/text/isempty.png -------------------------------------------------------------------------------- /docs/assets/images/blocks/text/isstring.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/text/isstring.png -------------------------------------------------------------------------------- /docs/assets/images/blocks/text/join.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/text/join.png -------------------------------------------------------------------------------- /docs/assets/images/blocks/text/length.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/text/length.png -------------------------------------------------------------------------------- /docs/assets/images/blocks/text/obfuscated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/text/obfuscated.png -------------------------------------------------------------------------------- /docs/assets/images/blocks/text/replaceall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/text/replaceall.png -------------------------------------------------------------------------------- /docs/assets/images/blocks/text/segment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/text/segment.png -------------------------------------------------------------------------------- /docs/assets/images/blocks/text/split.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/text/split.png -------------------------------------------------------------------------------- /docs/assets/images/blocks/text/splitAtAny.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/text/splitAtAny.png -------------------------------------------------------------------------------- /docs/assets/images/blocks/text/splitAtFirstOfAny.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/text/splitAtFirstOfAny.png -------------------------------------------------------------------------------- /docs/assets/images/blocks/text/splitatfirst.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/text/splitatfirst.png -------------------------------------------------------------------------------- /docs/assets/images/blocks/text/splitatspaces.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/text/splitatspaces.png -------------------------------------------------------------------------------- /docs/assets/images/blocks/text/startsat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/text/startsat.png -------------------------------------------------------------------------------- /docs/assets/images/blocks/text/string.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/text/string.png -------------------------------------------------------------------------------- /docs/assets/images/blocks/text/trim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/text/trim.png -------------------------------------------------------------------------------- /docs/assets/images/blocks/text/upcase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/text/upcase.png -------------------------------------------------------------------------------- /docs/assets/images/blocks/variables/get.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/variables/get.png -------------------------------------------------------------------------------- /docs/assets/images/blocks/variables/initializeglobal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/variables/initializeglobal.png -------------------------------------------------------------------------------- /docs/assets/images/blocks/variables/initializelocaldo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/variables/initializelocaldo.png -------------------------------------------------------------------------------- /docs/assets/images/blocks/variables/initializelocalreturn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/variables/initializelocalreturn.png -------------------------------------------------------------------------------- /docs/assets/images/blocks/variables/set.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/blocks/variables/set.png -------------------------------------------------------------------------------- /docs/assets/images/components/screen/screen-book-analogy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/components/screen/screen-book-analogy.png -------------------------------------------------------------------------------- /docs/assets/images/guides/dynamic-cards/all-blocks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/guides/dynamic-cards/all-blocks.png -------------------------------------------------------------------------------- /docs/assets/images/guides/dynamic-cards/d_with-components.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/guides/dynamic-cards/d_with-components.png -------------------------------------------------------------------------------- /docs/assets/images/guides/dynamic-cards/e_screen-initialize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/guides/dynamic-cards/e_screen-initialize.png -------------------------------------------------------------------------------- /docs/assets/images/guides/dynamic-cards/e_web-got-text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/guides/dynamic-cards/e_web-got-text.png -------------------------------------------------------------------------------- /docs/assets/images/guides/dynamic-cards/f_create-card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/guides/dynamic-cards/f_create-card.png -------------------------------------------------------------------------------- /docs/assets/images/guides/dynamic-cards/f_populate-news-articles-with-call.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/guides/dynamic-cards/f_populate-news-articles-with-call.png -------------------------------------------------------------------------------- /docs/assets/images/guides/dynamic-cards/f_populate-news-articles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/guides/dynamic-cards/f_populate-news-articles.png -------------------------------------------------------------------------------- /docs/assets/images/guides/dynamic-cards/m_create-dynamic-card-view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/guides/dynamic-cards/m_create-dynamic-card-view.png -------------------------------------------------------------------------------- /docs/assets/images/guides/dynamic-cards/m_create-dynamic-description.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/guides/dynamic-cards/m_create-dynamic-description.png -------------------------------------------------------------------------------- /docs/assets/images/guides/dynamic-cards/m_create-dynamic-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/guides/dynamic-cards/m_create-dynamic-image.png -------------------------------------------------------------------------------- /docs/assets/images/guides/dynamic-cards/m_create-dynamic-label.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/guides/dynamic-cards/m_create-dynamic-label.png -------------------------------------------------------------------------------- /docs/assets/images/guides/dynamic-cards/pr_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/guides/dynamic-cards/pr_screenshot.png -------------------------------------------------------------------------------- /docs/assets/images/guides/dynamic-cards/v_result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/guides/dynamic-cards/v_result.png -------------------------------------------------------------------------------- /docs/assets/images/guides/firebase-rules/all-blocks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/guides/firebase-rules/all-blocks.png -------------------------------------------------------------------------------- /docs/assets/images/guides/firebase-rules/d_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/guides/firebase-rules/d_preview.png -------------------------------------------------------------------------------- /docs/assets/images/guides/firebase-rules/e_current-user-success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/guides/firebase-rules/e_current-user-success.png -------------------------------------------------------------------------------- /docs/assets/images/guides/firebase-rules/e_getdetails-click.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/guides/firebase-rules/e_getdetails-click.png -------------------------------------------------------------------------------- /docs/assets/images/guides/firebase-rules/e_got-value-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/guides/firebase-rules/e_got-value-2.png -------------------------------------------------------------------------------- /docs/assets/images/guides/firebase-rules/e_got-value.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/guides/firebase-rules/e_got-value.png -------------------------------------------------------------------------------- /docs/assets/images/guides/firebase-rules/e_login-success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/guides/firebase-rules/e_login-success.png -------------------------------------------------------------------------------- /docs/assets/images/guides/firebase-rules/e_signinbutton-click.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/guides/firebase-rules/e_signinbutton-click.png -------------------------------------------------------------------------------- /docs/assets/images/guides/firebase-rules/e_updatedetailsbutton-click.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/guides/firebase-rules/e_updatedetailsbutton-click.png -------------------------------------------------------------------------------- /docs/assets/images/guides/firebase-rules/ext_fauth-google.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/guides/firebase-rules/ext_fauth-google.png -------------------------------------------------------------------------------- /docs/assets/images/guides/firebase-rules/ext_fdb-data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/guides/firebase-rules/ext_fdb-data.png -------------------------------------------------------------------------------- /docs/assets/images/guides/firebase-rules/ext_fdb-home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/guides/firebase-rules/ext_fdb-home.png -------------------------------------------------------------------------------- /docs/assets/images/guides/firebase-rules/ext_fdb-rules.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/guides/firebase-rules/ext_fdb-rules.png -------------------------------------------------------------------------------- /docs/assets/images/guides/firebase-rules/m_append-value-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/guides/firebase-rules/m_append-value-2.png -------------------------------------------------------------------------------- /docs/assets/images/guides/firebase-rules/m_append-value.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/guides/firebase-rules/m_append-value.png -------------------------------------------------------------------------------- /docs/assets/images/guides/firebase-rules/m_get-value-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/guides/firebase-rules/m_get-value-2.png -------------------------------------------------------------------------------- /docs/assets/images/guides/firebase-rules/m_get-value-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/guides/firebase-rules/m_get-value-3.png -------------------------------------------------------------------------------- /docs/assets/images/guides/firebase-rules/m_get-value-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/guides/firebase-rules/m_get-value-4.png -------------------------------------------------------------------------------- /docs/assets/images/guides/firebase-rules/m_get-value.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/guides/firebase-rules/m_get-value.png -------------------------------------------------------------------------------- /docs/assets/images/guides/firebase-rules/m_store-value-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/guides/firebase-rules/m_store-value-2.png -------------------------------------------------------------------------------- /docs/assets/images/guides/firebase-rules/m_store-value.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/guides/firebase-rules/m_store-value.png -------------------------------------------------------------------------------- /docs/assets/images/guides/firebase-rules/v_names.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/guides/firebase-rules/v_names.png -------------------------------------------------------------------------------- /docs/assets/images/guides/firebase-rules/v_uids.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/guides/firebase-rules/v_uids.png -------------------------------------------------------------------------------- /docs/assets/images/guides/monetization/admapp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/guides/monetization/admapp.png -------------------------------------------------------------------------------- /docs/assets/images/guides/monetization/approved.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/guides/monetization/approved.png -------------------------------------------------------------------------------- /docs/assets/images/guides/monetization/creator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/guides/monetization/creator.png -------------------------------------------------------------------------------- /docs/assets/images/guides/monetization/email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/guides/monetization/email.png -------------------------------------------------------------------------------- /docs/assets/images/guides/monetization/preinvite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/guides/monetization/preinvite.png -------------------------------------------------------------------------------- /docs/assets/images/guides/pollfish/blocks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/guides/pollfish/blocks.png -------------------------------------------------------------------------------- /docs/assets/images/guides/pollfish/d_pollfish-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/guides/pollfish/d_pollfish-1.jpg -------------------------------------------------------------------------------- /docs/assets/images/guides/pollfish/d_pollfish-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/guides/pollfish/d_pollfish-2.jpg -------------------------------------------------------------------------------- /docs/assets/images/guides/pollfish/e_button-click.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/guides/pollfish/e_button-click.png -------------------------------------------------------------------------------- /docs/assets/images/guides/pollfish/e_survey-completed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/guides/pollfish/e_survey-completed.png -------------------------------------------------------------------------------- /docs/assets/images/guides/pollfish/e_survey-not-available.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/guides/pollfish/e_survey-not-available.png -------------------------------------------------------------------------------- /docs/assets/images/guides/pollfish/e_survey-received.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/guides/pollfish/e_survey-received.png -------------------------------------------------------------------------------- /docs/assets/images/guides/pollfish/e_user-not-eligible.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/guides/pollfish/e_user-not-eligible.png -------------------------------------------------------------------------------- /docs/assets/images/guides/pollfish/e_user-rejected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/guides/pollfish/e_user-rejected.png -------------------------------------------------------------------------------- /docs/assets/images/guides/pollfish/ext_api.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/guides/pollfish/ext_api.jpg -------------------------------------------------------------------------------- /docs/assets/images/guides/pollfish/ext_create.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/guides/pollfish/ext_create.jpg -------------------------------------------------------------------------------- /docs/assets/images/guides/pollfish/ext_dashboard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/guides/pollfish/ext_dashboard.jpg -------------------------------------------------------------------------------- /docs/assets/images/guides/pollfish/ext_signup.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/guides/pollfish/ext_signup.jpg -------------------------------------------------------------------------------- /docs/assets/images/guides/pollfish/p_survey-not-available.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/guides/pollfish/p_survey-not-available.png -------------------------------------------------------------------------------- /docs/assets/images/guides/pollfish/pr_reward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/guides/pollfish/pr_reward.png -------------------------------------------------------------------------------- /docs/assets/images/guides/pollfish/pr_survey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/guides/pollfish/pr_survey.png -------------------------------------------------------------------------------- /docs/assets/images/guides/pollfish/v_survey-received.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/guides/pollfish/v_survey-received.png -------------------------------------------------------------------------------- /docs/assets/images/guides/remote-config/all-blocks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/guides/remote-config/all-blocks.png -------------------------------------------------------------------------------- /docs/assets/images/guides/remote-config/d_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/guides/remote-config/d_preview.png -------------------------------------------------------------------------------- /docs/assets/images/guides/remote-config/e_fetch-success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/guides/remote-config/e_fetch-success.png -------------------------------------------------------------------------------- /docs/assets/images/guides/remote-config/e_item-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/guides/remote-config/e_item-selected.png -------------------------------------------------------------------------------- /docs/assets/images/guides/remote-config/e_screen-initialize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/guides/remote-config/e_screen-initialize.png -------------------------------------------------------------------------------- /docs/assets/images/guides/remote-config/e_tab-item-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/guides/remote-config/e_tab-item-selected.png -------------------------------------------------------------------------------- /docs/assets/images/guides/remote-config/ext_frc-condition.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/guides/remote-config/ext_frc-condition.gif -------------------------------------------------------------------------------- /docs/assets/images/guides/remote-config/ext_frc-home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/guides/remote-config/ext_frc-home.png -------------------------------------------------------------------------------- /docs/assets/images/guides/remote-config/ext_frc-param-name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/guides/remote-config/ext_frc-param-name.png -------------------------------------------------------------------------------- /docs/assets/images/guides/remote-config/ext_frc-param-value.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/guides/remote-config/ext_frc-param-value.png -------------------------------------------------------------------------------- /docs/assets/images/guides/remote-config/ext_frc-publish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/guides/remote-config/ext_frc-publish.png -------------------------------------------------------------------------------- /docs/assets/images/guides/remote-config/ext_frc-rollback.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/guides/remote-config/ext_frc-rollback.gif -------------------------------------------------------------------------------- /docs/assets/images/guides/remote-config/ext_frc-rollout.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/guides/remote-config/ext_frc-rollout.gif -------------------------------------------------------------------------------- /docs/assets/images/guides/remote-config/m_add-item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/guides/remote-config/m_add-item.png -------------------------------------------------------------------------------- /docs/assets/images/guides/remote-config/m_fetch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/guides/remote-config/m_fetch.png -------------------------------------------------------------------------------- /docs/assets/images/guides/remote-config/p_select-arrangement.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/guides/remote-config/p_select-arrangement.png -------------------------------------------------------------------------------- /docs/assets/images/guides/remote-config/pr_bottom-nav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/guides/remote-config/pr_bottom-nav.png -------------------------------------------------------------------------------- /docs/assets/images/guides/remote-config/pr_tab-layout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/guides/remote-config/pr_tab-layout.png -------------------------------------------------------------------------------- /docs/assets/images/guides/targeted-notifications/d_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/guides/targeted-notifications/d_preview.png -------------------------------------------------------------------------------- /docs/assets/images/guides/targeted-notifications/e_screen-initialize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/guides/targeted-notifications/e_screen-initialize.png -------------------------------------------------------------------------------- /docs/assets/images/guides/targeted-notifications/ext_ons-audience-selection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/guides/targeted-notifications/ext_ons-audience-selection.png -------------------------------------------------------------------------------- /docs/assets/images/guides/targeted-notifications/ext_ons-audience.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/guides/targeted-notifications/ext_ons-audience.png -------------------------------------------------------------------------------- /docs/assets/images/guides/targeted-notifications/ext_ons-home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/guides/targeted-notifications/ext_ons-home.png -------------------------------------------------------------------------------- /docs/assets/images/guides/targeted-notifications/ext_ons-messages.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/guides/targeted-notifications/ext_ons-messages.png -------------------------------------------------------------------------------- /docs/assets/images/guides/targeted-notifications/ext_ons-pro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/guides/targeted-notifications/ext_ons-pro.png -------------------------------------------------------------------------------- /docs/assets/images/guides/targeted-notifications/ext_ons-segment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/guides/targeted-notifications/ext_ons-segment.png -------------------------------------------------------------------------------- /docs/assets/images/other/backpack-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/other/backpack-1.png -------------------------------------------------------------------------------- /docs/assets/images/other/backpack-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/other/backpack-2.png -------------------------------------------------------------------------------- /docs/assets/images/other/backpack-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/other/backpack-3.png -------------------------------------------------------------------------------- /docs/assets/images/other/backpack-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/other/backpack-4.png -------------------------------------------------------------------------------- /docs/assets/images/other/backpack-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/other/backpack-5.png -------------------------------------------------------------------------------- /docs/assets/images/other/backpack-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/other/backpack-6.png -------------------------------------------------------------------------------- /docs/assets/images/other/components-blocks-illustration.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/other/components-blocks-illustration.jpg -------------------------------------------------------------------------------- /docs/assets/images/other/designer-tagged-with-numbers.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/other/designer-tagged-with-numbers.jpg -------------------------------------------------------------------------------- /docs/assets/images/other/event-block-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/other/event-block-example.png -------------------------------------------------------------------------------- /docs/assets/images/other/live-development/index-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/other/live-development/index-1.png -------------------------------------------------------------------------------- /docs/assets/images/other/live-development/index-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/other/live-development/index-2.png -------------------------------------------------------------------------------- /docs/assets/images/other/live-development/usb-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/other/live-development/usb-1.png -------------------------------------------------------------------------------- /docs/assets/images/other/live-development/usb-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/other/live-development/usb-2.png -------------------------------------------------------------------------------- /docs/assets/images/other/live-development/wifi-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/other/live-development/wifi-1.png -------------------------------------------------------------------------------- /docs/assets/images/other/live-development/wifi-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/other/live-development/wifi-2.png -------------------------------------------------------------------------------- /docs/assets/images/other/live-development/wifi-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/other/live-development/wifi-3.png -------------------------------------------------------------------------------- /docs/assets/images/other/method-block-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/other/method-block-example.png -------------------------------------------------------------------------------- /docs/assets/images/other/property-block-example.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/other/property-block-example.jpg -------------------------------------------------------------------------------- /docs/assets/images/other/resources/kodularconceptcard01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/other/resources/kodularconceptcard01.png -------------------------------------------------------------------------------- /docs/assets/images/other/resources/kodularconceptcard02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/other/resources/kodularconceptcard02.png -------------------------------------------------------------------------------- /docs/assets/images/other/resources/kodularconceptcard03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/other/resources/kodularconceptcard03.png -------------------------------------------------------------------------------- /docs/assets/images/other/resources/kodularconceptcard04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/other/resources/kodularconceptcard04.png -------------------------------------------------------------------------------- /docs/assets/images/other/resources/kodularconceptcard05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/other/resources/kodularconceptcard05.png -------------------------------------------------------------------------------- /docs/assets/images/other/resources/kodularconceptcard06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/other/resources/kodularconceptcard06.png -------------------------------------------------------------------------------- /docs/assets/images/other/resources/kodularconceptcard07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/other/resources/kodularconceptcard07.png -------------------------------------------------------------------------------- /docs/assets/images/other/resources/kodularconceptcard08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/other/resources/kodularconceptcard08.png -------------------------------------------------------------------------------- /docs/assets/images/other/resources/kodularconceptcard09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/other/resources/kodularconceptcard09.png -------------------------------------------------------------------------------- /docs/assets/images/other/resources/kodularconceptcard10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/other/resources/kodularconceptcard10.png -------------------------------------------------------------------------------- /docs/assets/images/other/resources/kodularconceptcard11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/other/resources/kodularconceptcard11.png -------------------------------------------------------------------------------- /docs/assets/images/other/resources/kodularconceptcard12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/other/resources/kodularconceptcard12.png -------------------------------------------------------------------------------- /docs/assets/images/other/resources/kodularconceptcard13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/other/resources/kodularconceptcard13.png -------------------------------------------------------------------------------- /docs/assets/images/other/resources/kodularconceptcard14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/other/resources/kodularconceptcard14.png -------------------------------------------------------------------------------- /docs/assets/images/other/resources/kodularconceptcard15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/other/resources/kodularconceptcard15.png -------------------------------------------------------------------------------- /docs/assets/images/support/adm/balance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/support/adm/balance.png -------------------------------------------------------------------------------- /docs/assets/images/support/adm/withdraw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/images/support/adm/withdraw.png -------------------------------------------------------------------------------- /docs/assets/js/blockly_compressed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/js/blockly_compressed.js -------------------------------------------------------------------------------- /docs/assets/js/extra.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/js/extra.js -------------------------------------------------------------------------------- /docs/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/assets/logo.png -------------------------------------------------------------------------------- /docs/blocks/any-component.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/blocks/colors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/blocks/colors.md -------------------------------------------------------------------------------- /docs/blocks/control.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/blocks/control.md -------------------------------------------------------------------------------- /docs/blocks/dictionaries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/blocks/dictionaries.md -------------------------------------------------------------------------------- /docs/blocks/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/blocks/index.md -------------------------------------------------------------------------------- /docs/blocks/lists.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/blocks/lists.md -------------------------------------------------------------------------------- /docs/blocks/logic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/blocks/logic.md -------------------------------------------------------------------------------- /docs/blocks/math.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/blocks/math.md -------------------------------------------------------------------------------- /docs/blocks/procedures.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/blocks/procedures.md -------------------------------------------------------------------------------- /docs/blocks/text.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/blocks/text.md -------------------------------------------------------------------------------- /docs/blocks/variables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/blocks/variables.md -------------------------------------------------------------------------------- /docs/components/connectivity/activity-starter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/connectivity/activity-starter.md -------------------------------------------------------------------------------- /docs/components/connectivity/arduino.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/connectivity/arduino.md -------------------------------------------------------------------------------- /docs/components/connectivity/bluetooth-admin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/connectivity/bluetooth-admin.md -------------------------------------------------------------------------------- /docs/components/connectivity/bluetooth-client.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/connectivity/bluetooth-client.md -------------------------------------------------------------------------------- /docs/components/connectivity/bluetooth-server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/connectivity/bluetooth-server.md -------------------------------------------------------------------------------- /docs/components/connectivity/download.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/connectivity/download.md -------------------------------------------------------------------------------- /docs/components/connectivity/ftp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/connectivity/ftp.md -------------------------------------------------------------------------------- /docs/components/connectivity/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/connectivity/index.md -------------------------------------------------------------------------------- /docs/components/connectivity/network.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/connectivity/network.md -------------------------------------------------------------------------------- /docs/components/connectivity/web.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/connectivity/web.md -------------------------------------------------------------------------------- /docs/components/connectivity/wifi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/connectivity/wifi.md -------------------------------------------------------------------------------- /docs/components/drawing-and-animation/ball.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/drawing-and-animation/ball.md -------------------------------------------------------------------------------- /docs/components/drawing-and-animation/canvas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/drawing-and-animation/canvas.md -------------------------------------------------------------------------------- /docs/components/drawing-and-animation/image-editor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/drawing-and-animation/image-editor.md -------------------------------------------------------------------------------- /docs/components/drawing-and-animation/image-sprite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/drawing-and-animation/image-sprite.md -------------------------------------------------------------------------------- /docs/components/drawing-and-animation/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/drawing-and-animation/index.md -------------------------------------------------------------------------------- /docs/components/drawing-and-animation/lottie.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/drawing-and-animation/lottie.md -------------------------------------------------------------------------------- /docs/components/dynamic/dynamic-button.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/dynamic/dynamic-button.md -------------------------------------------------------------------------------- /docs/components/dynamic/dynamic-card-view.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/dynamic/dynamic-card-view.md -------------------------------------------------------------------------------- /docs/components/dynamic/dynamic-image.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/dynamic/dynamic-image.md -------------------------------------------------------------------------------- /docs/components/dynamic/dynamic-label.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/dynamic/dynamic-label.md -------------------------------------------------------------------------------- /docs/components/dynamic/dynamic-space.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/dynamic/dynamic-space.md -------------------------------------------------------------------------------- /docs/components/dynamic/dynamic-text-box.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/dynamic/dynamic-text-box.md -------------------------------------------------------------------------------- /docs/components/dynamic/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/dynamic/index.md -------------------------------------------------------------------------------- /docs/components/experimental/clouddb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/experimental/clouddb.md -------------------------------------------------------------------------------- /docs/components/experimental/custom-tabs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/experimental/custom-tabs.md -------------------------------------------------------------------------------- /docs/components/experimental/exoplayer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/experimental/exoplayer.md -------------------------------------------------------------------------------- /docs/components/experimental/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/experimental/index.md -------------------------------------------------------------------------------- /docs/components/experimental/notification.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/experimental/notification.md -------------------------------------------------------------------------------- /docs/components/experimental/shortcut-badge.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/experimental/shortcut-badge.md -------------------------------------------------------------------------------- /docs/components/google/firebase-authentication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/google/firebase-authentication.md -------------------------------------------------------------------------------- /docs/components/google/firebase-database.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/google/firebase-database.md -------------------------------------------------------------------------------- /docs/components/google/firebase-remote-config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/google/firebase-remote-config.md -------------------------------------------------------------------------------- /docs/components/google/firebase-storage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/google/firebase-storage.md -------------------------------------------------------------------------------- /docs/components/google/google-account-picker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/google/google-account-picker.md -------------------------------------------------------------------------------- /docs/components/google/google-maps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/google/google-maps.md -------------------------------------------------------------------------------- /docs/components/google/google-play-games.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/google/google-play-games.md -------------------------------------------------------------------------------- /docs/components/google/google-recaptcha.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/google/google-recaptcha.md -------------------------------------------------------------------------------- /docs/components/google/in-app-review.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/google/in-app-review.md -------------------------------------------------------------------------------- /docs/components/google/in-app-update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/google/in-app-update.md -------------------------------------------------------------------------------- /docs/components/google/inapp-review.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/google/inapp-review.md -------------------------------------------------------------------------------- /docs/components/google/inapp-update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/google/inapp-update.md -------------------------------------------------------------------------------- /docs/components/google/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/google/index.md -------------------------------------------------------------------------------- /docs/components/google/play-integrity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/google/play-integrity.md -------------------------------------------------------------------------------- /docs/components/google/youtube-player.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/google/youtube-player.md -------------------------------------------------------------------------------- /docs/components/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/index.md -------------------------------------------------------------------------------- /docs/components/layout/general/card-view.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/layout/general/card-view.md -------------------------------------------------------------------------------- /docs/components/layout/general/grid-view.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/layout/general/grid-view.md -------------------------------------------------------------------------------- /docs/components/layout/general/horizontal-arrangement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/layout/general/horizontal-arrangement.md -------------------------------------------------------------------------------- /docs/components/layout/general/horizontal-scroll-arrangement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/layout/general/horizontal-scroll-arrangement.md -------------------------------------------------------------------------------- /docs/components/layout/general/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/layout/general/index.md -------------------------------------------------------------------------------- /docs/components/layout/general/space.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/layout/general/space.md -------------------------------------------------------------------------------- /docs/components/layout/general/swipe-refresh-layout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/layout/general/swipe-refresh-layout.md -------------------------------------------------------------------------------- /docs/components/layout/general/table-arrangement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/layout/general/table-arrangement.md -------------------------------------------------------------------------------- /docs/components/layout/general/vertical-arrangement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/layout/general/vertical-arrangement.md -------------------------------------------------------------------------------- /docs/components/layout/general/vertical-scroll-arrangement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/layout/general/vertical-scroll-arrangement.md -------------------------------------------------------------------------------- /docs/components/layout/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/layout/index.md -------------------------------------------------------------------------------- /docs/components/layout/lists/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/layout/lists/index.md -------------------------------------------------------------------------------- /docs/components/layout/lists/list-view-image-and-text.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/layout/lists/list-view-image-and-text.md -------------------------------------------------------------------------------- /docs/components/layout/lists/list-view.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/layout/lists/list-view.md -------------------------------------------------------------------------------- /docs/components/layout/navigation/bottom-navigation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/layout/navigation/bottom-navigation.md -------------------------------------------------------------------------------- /docs/components/layout/navigation/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/layout/navigation/index.md -------------------------------------------------------------------------------- /docs/components/layout/navigation/side-menu-layout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/layout/navigation/side-menu-layout.md -------------------------------------------------------------------------------- /docs/components/layout/navigation/tab-layout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/layout/navigation/tab-layout.md -------------------------------------------------------------------------------- /docs/components/layout/navigation/view-pager.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/layout/navigation/view-pager.md -------------------------------------------------------------------------------- /docs/components/layout/views/bottom-sheet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/layout/views/bottom-sheet.md -------------------------------------------------------------------------------- /docs/components/layout/views/chat-view.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/layout/views/chat-view.md -------------------------------------------------------------------------------- /docs/components/layout/views/gallery-viewer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/layout/views/gallery-viewer.md -------------------------------------------------------------------------------- /docs/components/layout/views/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/layout/views/index.md -------------------------------------------------------------------------------- /docs/components/layout/views/surface-view.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/layout/views/surface-view.md -------------------------------------------------------------------------------- /docs/components/layout/views/view-flipper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/layout/views/view-flipper.md -------------------------------------------------------------------------------- /docs/components/layout/views/web-viewer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/layout/views/web-viewer.md -------------------------------------------------------------------------------- /docs/components/lego-mindstorms/ev3/ev3-color-sensor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/lego-mindstorms/ev3/ev3-color-sensor.md -------------------------------------------------------------------------------- /docs/components/lego-mindstorms/ev3/ev3-commands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/lego-mindstorms/ev3/ev3-commands.md -------------------------------------------------------------------------------- /docs/components/lego-mindstorms/ev3/ev3-gyro-sensor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/lego-mindstorms/ev3/ev3-gyro-sensor.md -------------------------------------------------------------------------------- /docs/components/lego-mindstorms/ev3/ev3-motors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/lego-mindstorms/ev3/ev3-motors.md -------------------------------------------------------------------------------- /docs/components/lego-mindstorms/ev3/ev3-sound.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/lego-mindstorms/ev3/ev3-sound.md -------------------------------------------------------------------------------- /docs/components/lego-mindstorms/ev3/ev3-touch-sensor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/lego-mindstorms/ev3/ev3-touch-sensor.md -------------------------------------------------------------------------------- /docs/components/lego-mindstorms/ev3/ev3-ui.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/lego-mindstorms/ev3/ev3-ui.md -------------------------------------------------------------------------------- /docs/components/lego-mindstorms/ev3/ev3-ultrasonic-sensor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/lego-mindstorms/ev3/ev3-ultrasonic-sensor.md -------------------------------------------------------------------------------- /docs/components/lego-mindstorms/ev3/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/lego-mindstorms/ev3/index.md -------------------------------------------------------------------------------- /docs/components/lego-mindstorms/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/lego-mindstorms/index.md -------------------------------------------------------------------------------- /docs/components/lego-mindstorms/nxt/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/lego-mindstorms/nxt/index.md -------------------------------------------------------------------------------- /docs/components/lego-mindstorms/nxt/nxt-color-sensor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/lego-mindstorms/nxt/nxt-color-sensor.md -------------------------------------------------------------------------------- /docs/components/lego-mindstorms/nxt/nxt-direct-commands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/lego-mindstorms/nxt/nxt-direct-commands.md -------------------------------------------------------------------------------- /docs/components/lego-mindstorms/nxt/nxt-drive.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/lego-mindstorms/nxt/nxt-drive.md -------------------------------------------------------------------------------- /docs/components/lego-mindstorms/nxt/nxt-light-sensor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/lego-mindstorms/nxt/nxt-light-sensor.md -------------------------------------------------------------------------------- /docs/components/lego-mindstorms/nxt/nxt-sound-sensor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/lego-mindstorms/nxt/nxt-sound-sensor.md -------------------------------------------------------------------------------- /docs/components/lego-mindstorms/nxt/nxt-touch-sensor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/lego-mindstorms/nxt/nxt-touch-sensor.md -------------------------------------------------------------------------------- /docs/components/lego-mindstorms/nxt/nxt-ultrasonic-sensor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/lego-mindstorms/nxt/nxt-ultrasonic-sensor.md -------------------------------------------------------------------------------- /docs/components/maps/circle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/maps/circle.md -------------------------------------------------------------------------------- /docs/components/maps/feature-collection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/maps/feature-collection.md -------------------------------------------------------------------------------- /docs/components/maps/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/maps/index.md -------------------------------------------------------------------------------- /docs/components/maps/line-string.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/maps/line-string.md -------------------------------------------------------------------------------- /docs/components/maps/map.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/maps/map.md -------------------------------------------------------------------------------- /docs/components/maps/marker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/maps/marker.md -------------------------------------------------------------------------------- /docs/components/maps/navigation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/maps/navigation.md -------------------------------------------------------------------------------- /docs/components/maps/polygon.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/maps/polygon.md -------------------------------------------------------------------------------- /docs/components/maps/rectangle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/maps/rectangle.md -------------------------------------------------------------------------------- /docs/components/media/audio-picker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/media/audio-picker.md -------------------------------------------------------------------------------- /docs/components/media/camcorder.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/media/camcorder.md -------------------------------------------------------------------------------- /docs/components/media/camera.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/media/camera.md -------------------------------------------------------------------------------- /docs/components/media/image-picker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/media/image-picker.md -------------------------------------------------------------------------------- /docs/components/media/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/media/index.md -------------------------------------------------------------------------------- /docs/components/media/metadata.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/media/metadata.md -------------------------------------------------------------------------------- /docs/components/media/ocr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/media/ocr.md -------------------------------------------------------------------------------- /docs/components/media/player.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/media/player.md -------------------------------------------------------------------------------- /docs/components/media/qr-code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/media/qr-code.md -------------------------------------------------------------------------------- /docs/components/media/sound-recorder.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/media/sound-recorder.md -------------------------------------------------------------------------------- /docs/components/media/sound.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/media/sound.md -------------------------------------------------------------------------------- /docs/components/media/speech-recognizer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/media/speech-recognizer.md -------------------------------------------------------------------------------- /docs/components/media/text-to-speech.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/media/text-to-speech.md -------------------------------------------------------------------------------- /docs/components/media/video-picker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/media/video-picker.md -------------------------------------------------------------------------------- /docs/components/media/video-player.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/media/video-player.md -------------------------------------------------------------------------------- /docs/components/media/yandex-translate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/media/yandex-translate.md -------------------------------------------------------------------------------- /docs/components/mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/mkdocs.yml -------------------------------------------------------------------------------- /docs/components/monetization/advertising/adcolony-interstitial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/monetization/advertising/adcolony-interstitial.md -------------------------------------------------------------------------------- /docs/components/monetization/advertising/admob-app-open.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/monetization/advertising/admob-app-open.md -------------------------------------------------------------------------------- /docs/components/monetization/advertising/admob-banner.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/monetization/advertising/admob-banner.md -------------------------------------------------------------------------------- /docs/components/monetization/advertising/admob-interstitial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/monetization/advertising/admob-interstitial.md -------------------------------------------------------------------------------- /docs/components/monetization/advertising/admob-native-ad-layout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/monetization/advertising/admob-native-ad-layout.md -------------------------------------------------------------------------------- /docs/components/monetization/advertising/admob-rewarded-interstitial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/monetization/advertising/admob-rewarded-interstitial.md -------------------------------------------------------------------------------- /docs/components/monetization/advertising/admob-rewarded-video.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/monetization/advertising/admob-rewarded-video.md -------------------------------------------------------------------------------- /docs/components/monetization/advertising/admob-rewarded.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/monetization/advertising/admob-rewarded.md -------------------------------------------------------------------------------- /docs/components/monetization/advertising/amazon-banner.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/monetization/advertising/amazon-banner.md -------------------------------------------------------------------------------- /docs/components/monetization/advertising/amazon-interstitial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/monetization/advertising/amazon-interstitial.md -------------------------------------------------------------------------------- /docs/components/monetization/advertising/applovin-interstitial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/monetization/advertising/applovin-interstitial.md -------------------------------------------------------------------------------- /docs/components/monetization/advertising/facebook-banner.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/monetization/advertising/facebook-banner.md -------------------------------------------------------------------------------- /docs/components/monetization/advertising/facebook-interstitial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/monetization/advertising/facebook-interstitial.md -------------------------------------------------------------------------------- /docs/components/monetization/advertising/facebook-rewarded-video.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/monetization/advertising/facebook-rewarded-video.md -------------------------------------------------------------------------------- /docs/components/monetization/advertising/google-ad-manager-app-open.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/monetization/advertising/google-ad-manager-app-open.md -------------------------------------------------------------------------------- /docs/components/monetization/advertising/google-ad-manager-banner.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/monetization/advertising/google-ad-manager-banner.md -------------------------------------------------------------------------------- /docs/components/monetization/advertising/google-ad-manager-interstitial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/monetization/advertising/google-ad-manager-interstitial.md -------------------------------------------------------------------------------- /docs/components/monetization/advertising/google-ad-manager-native-ad-layout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/monetization/advertising/google-ad-manager-native-ad-layout.md -------------------------------------------------------------------------------- /docs/components/monetization/advertising/google-ad-manager-rewarded-interstitial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/monetization/advertising/google-ad-manager-rewarded-interstitial.md -------------------------------------------------------------------------------- /docs/components/monetization/advertising/google-ad-manager-rewarded.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/monetization/advertising/google-ad-manager-rewarded.md -------------------------------------------------------------------------------- /docs/components/monetization/advertising/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/monetization/advertising/index.md -------------------------------------------------------------------------------- /docs/components/monetization/advertising/leadbolt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/monetization/advertising/leadbolt.md -------------------------------------------------------------------------------- /docs/components/monetization/advertising/startapp-banner.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/monetization/advertising/startapp-banner.md -------------------------------------------------------------------------------- /docs/components/monetization/advertising/startapp-interstitial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/monetization/advertising/startapp-interstitial.md -------------------------------------------------------------------------------- /docs/components/monetization/general/in-app-billing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/monetization/general/in-app-billing.md -------------------------------------------------------------------------------- /docs/components/monetization/general/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/monetization/general/index.md -------------------------------------------------------------------------------- /docs/components/monetization/general/pollfish.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/monetization/general/pollfish.md -------------------------------------------------------------------------------- /docs/components/monetization/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/monetization/index.md -------------------------------------------------------------------------------- /docs/components/screen.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/screen.md -------------------------------------------------------------------------------- /docs/components/sensors/accelerometer-sensor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/sensors/accelerometer-sensor.md -------------------------------------------------------------------------------- /docs/components/sensors/barcode-scanner.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/sensors/barcode-scanner.md -------------------------------------------------------------------------------- /docs/components/sensors/clock.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/sensors/clock.md -------------------------------------------------------------------------------- /docs/components/sensors/fingerprint.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/sensors/fingerprint.md -------------------------------------------------------------------------------- /docs/components/sensors/gravity-sensor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/sensors/gravity-sensor.md -------------------------------------------------------------------------------- /docs/components/sensors/gyroscope-sensor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/sensors/gyroscope-sensor.md -------------------------------------------------------------------------------- /docs/components/sensors/hygrometer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/sensors/hygrometer.md -------------------------------------------------------------------------------- /docs/components/sensors/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/sensors/index.md -------------------------------------------------------------------------------- /docs/components/sensors/light-sensor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/sensors/light-sensor.md -------------------------------------------------------------------------------- /docs/components/sensors/location-sensor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/sensors/location-sensor.md -------------------------------------------------------------------------------- /docs/components/sensors/magnetic-field-sensor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/sensors/magnetic-field-sensor.md -------------------------------------------------------------------------------- /docs/components/sensors/near-field.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/sensors/near-field.md -------------------------------------------------------------------------------- /docs/components/sensors/orientation-sensor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/sensors/orientation-sensor.md -------------------------------------------------------------------------------- /docs/components/sensors/pedometer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/sensors/pedometer.md -------------------------------------------------------------------------------- /docs/components/sensors/pressure-sensor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/sensors/pressure-sensor.md -------------------------------------------------------------------------------- /docs/components/sensors/proximity-sensor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/sensors/proximity-sensor.md -------------------------------------------------------------------------------- /docs/components/sensors/sound-sensor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/sensors/sound-sensor.md -------------------------------------------------------------------------------- /docs/components/sensors/temperature-sensor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/sensors/temperature-sensor.md -------------------------------------------------------------------------------- /docs/components/social/contact-picker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/social/contact-picker.md -------------------------------------------------------------------------------- /docs/components/social/email-picker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/social/email-picker.md -------------------------------------------------------------------------------- /docs/components/social/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/social/index.md -------------------------------------------------------------------------------- /docs/components/social/onesignal-inapp-messages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/social/onesignal-inapp-messages.md -------------------------------------------------------------------------------- /docs/components/social/onesignal-management.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/social/onesignal-management.md -------------------------------------------------------------------------------- /docs/components/social/onesignal-notifications.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/social/onesignal-notifications.md -------------------------------------------------------------------------------- /docs/components/social/phone-call.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/social/phone-call.md -------------------------------------------------------------------------------- /docs/components/social/phone-number-picker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/social/phone-number-picker.md -------------------------------------------------------------------------------- /docs/components/social/sharing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/social/sharing.md -------------------------------------------------------------------------------- /docs/components/social/texting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/social/texting.md -------------------------------------------------------------------------------- /docs/components/social/twitter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/social/twitter.md -------------------------------------------------------------------------------- /docs/components/storage/cloudinary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/storage/cloudinary.md -------------------------------------------------------------------------------- /docs/components/storage/file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/storage/file.md -------------------------------------------------------------------------------- /docs/components/storage/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/storage/index.md -------------------------------------------------------------------------------- /docs/components/storage/spreadsheet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/storage/spreadsheet.md -------------------------------------------------------------------------------- /docs/components/storage/sqlite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/storage/sqlite.md -------------------------------------------------------------------------------- /docs/components/storage/tiny-db.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/storage/tiny-db.md -------------------------------------------------------------------------------- /docs/components/storage/tiny-web-db.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/storage/tiny-web-db.md -------------------------------------------------------------------------------- /docs/components/user-interface/button.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/user-interface/button.md -------------------------------------------------------------------------------- /docs/components/user-interface/checkbox.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/user-interface/checkbox.md -------------------------------------------------------------------------------- /docs/components/user-interface/circular-progress.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/user-interface/circular-progress.md -------------------------------------------------------------------------------- /docs/components/user-interface/custom-progress.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/user-interface/custom-progress.md -------------------------------------------------------------------------------- /docs/components/user-interface/date-picker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/user-interface/date-picker.md -------------------------------------------------------------------------------- /docs/components/user-interface/floating-action-button.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/user-interface/floating-action-button.md -------------------------------------------------------------------------------- /docs/components/user-interface/image.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/user-interface/image.md -------------------------------------------------------------------------------- /docs/components/user-interface/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/user-interface/index.md -------------------------------------------------------------------------------- /docs/components/user-interface/label.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/user-interface/label.md -------------------------------------------------------------------------------- /docs/components/user-interface/linear-progressbar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/user-interface/linear-progressbar.md -------------------------------------------------------------------------------- /docs/components/user-interface/list-picker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/user-interface/list-picker.md -------------------------------------------------------------------------------- /docs/components/user-interface/notifier.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/user-interface/notifier.md -------------------------------------------------------------------------------- /docs/components/user-interface/radio-button.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/user-interface/radio-button.md -------------------------------------------------------------------------------- /docs/components/user-interface/rating-bar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/user-interface/rating-bar.md -------------------------------------------------------------------------------- /docs/components/user-interface/slider.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/user-interface/slider.md -------------------------------------------------------------------------------- /docs/components/user-interface/snackbar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/user-interface/snackbar.md -------------------------------------------------------------------------------- /docs/components/user-interface/spinner.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/user-interface/spinner.md -------------------------------------------------------------------------------- /docs/components/user-interface/spotlight.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/user-interface/spotlight.md -------------------------------------------------------------------------------- /docs/components/user-interface/state-progress-bar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/user-interface/state-progress-bar.md -------------------------------------------------------------------------------- /docs/components/user-interface/switch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/user-interface/switch.md -------------------------------------------------------------------------------- /docs/components/user-interface/text-box.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/user-interface/text-box.md -------------------------------------------------------------------------------- /docs/components/user-interface/time-picker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/user-interface/time-picker.md -------------------------------------------------------------------------------- /docs/components/utilities/animation-utilities.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/utilities/animation-utilities.md -------------------------------------------------------------------------------- /docs/components/utilities/audio.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/utilities/audio.md -------------------------------------------------------------------------------- /docs/components/utilities/battery-utilities.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/utilities/battery-utilities.md -------------------------------------------------------------------------------- /docs/components/utilities/color-utilities.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/utilities/color-utilities.md -------------------------------------------------------------------------------- /docs/components/utilities/cryptography.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/utilities/cryptography.md -------------------------------------------------------------------------------- /docs/components/utilities/decoration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/utilities/decoration.md -------------------------------------------------------------------------------- /docs/components/utilities/device-utilities.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/utilities/device-utilities.md -------------------------------------------------------------------------------- /docs/components/utilities/image-utilities.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/utilities/image-utilities.md -------------------------------------------------------------------------------- /docs/components/utilities/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/utilities/index.md -------------------------------------------------------------------------------- /docs/components/utilities/keyguard-manager.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/utilities/keyguard-manager.md -------------------------------------------------------------------------------- /docs/components/utilities/package-utilities.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/utilities/package-utilities.md -------------------------------------------------------------------------------- /docs/components/utilities/resource-utilities.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/utilities/resource-utilities.md -------------------------------------------------------------------------------- /docs/components/utilities/screenshot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/utilities/screenshot.md -------------------------------------------------------------------------------- /docs/components/utilities/shell.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/utilities/shell.md -------------------------------------------------------------------------------- /docs/components/utilities/wallpaper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/components/utilities/wallpaper.md -------------------------------------------------------------------------------- /docs/guides/backpack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/guides/backpack.md -------------------------------------------------------------------------------- /docs/guides/component-examples/dynamic-cards.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/guides/component-examples/dynamic-cards.md -------------------------------------------------------------------------------- /docs/guides/component-examples/firebase-rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/guides/component-examples/firebase-rules.md -------------------------------------------------------------------------------- /docs/guides/component-examples/pollfish.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/guides/component-examples/pollfish.md -------------------------------------------------------------------------------- /docs/guides/component-examples/remote-config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/guides/component-examples/remote-config.md -------------------------------------------------------------------------------- /docs/guides/component-examples/securing-app.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/guides/component-examples/securing-app.md -------------------------------------------------------------------------------- /docs/guides/component-examples/targeted-notifications.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/guides/component-examples/targeted-notifications.md -------------------------------------------------------------------------------- /docs/guides/concept-cards.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/guides/concept-cards.md -------------------------------------------------------------------------------- /docs/guides/extensions/create-extensions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/guides/extensions/create-extensions.md -------------------------------------------------------------------------------- /docs/guides/extensions/kodular-methods.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/guides/extensions/kodular-methods.md -------------------------------------------------------------------------------- /docs/guides/hello-world.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/guides/hello-world.md -------------------------------------------------------------------------------- /docs/guides/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/guides/index.md -------------------------------------------------------------------------------- /docs/guides/keyboard-shortcuts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/guides/keyboard-shortcuts.md -------------------------------------------------------------------------------- /docs/guides/live-development/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/guides/live-development/index.md -------------------------------------------------------------------------------- /docs/guides/live-development/usb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/guides/live-development/usb.md -------------------------------------------------------------------------------- /docs/guides/live-development/wifi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/guides/live-development/wifi.md -------------------------------------------------------------------------------- /docs/guides/monetization-old.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/guides/monetization-old.md -------------------------------------------------------------------------------- /docs/guides/monetization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/guides/monetization.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/media/aia/dynamic_cards.aia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/media/aia/dynamic_cards.aia -------------------------------------------------------------------------------- /docs/media/aia/firebase_rules.aia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/media/aia/firebase_rules.aia -------------------------------------------------------------------------------- /docs/media/aia/pollfish.aia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/media/aia/pollfish.aia -------------------------------------------------------------------------------- /docs/media/aia/remote_config.aia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/media/aia/remote_config.aia -------------------------------------------------------------------------------- /docs/media/apk/remote_config.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/media/apk/remote_config.apk -------------------------------------------------------------------------------- /docs/media/apk/targeted_notifications.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/media/apk/targeted_notifications.apk -------------------------------------------------------------------------------- /docs/pricing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/pricing.md -------------------------------------------------------------------------------- /docs/release-notes/202508.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/release-notes/202508.md -------------------------------------------------------------------------------- /docs/release-notes/202510.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/release-notes/202510.md -------------------------------------------------------------------------------- /docs/release-notes/andromeda.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/release-notes/andromeda.md -------------------------------------------------------------------------------- /docs/release-notes/butterfly.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/release-notes/butterfly.md -------------------------------------------------------------------------------- /docs/release-notes/chamaeleon.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/release-notes/chamaeleon.md -------------------------------------------------------------------------------- /docs/release-notes/draco.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/release-notes/draco.md -------------------------------------------------------------------------------- /docs/release-notes/eagle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/release-notes/eagle.md -------------------------------------------------------------------------------- /docs/release-notes/fenix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/release-notes/fenix.md -------------------------------------------------------------------------------- /docs/release-notes/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/release-notes/index.md -------------------------------------------------------------------------------- /docs/support/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/support/index.md -------------------------------------------------------------------------------- /docs/terms-of-service.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/docs/terms-of-service.md -------------------------------------------------------------------------------- /extras/adcolony interstitial/extras.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/extras/adcolony interstitial/extras.html -------------------------------------------------------------------------------- /extras/admob banner/extras.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/extras/admob banner/extras.html -------------------------------------------------------------------------------- /extras/admob interstitial/extras.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/extras/admob interstitial/extras.html -------------------------------------------------------------------------------- /extras/admob rewarded video/extras.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/extras/admob rewarded video/extras.html -------------------------------------------------------------------------------- /extras/amazon banner/extras.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/extras/amazon banner/extras.html -------------------------------------------------------------------------------- /extras/amazon interstitial/extras.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/extras/amazon interstitial/extras.html -------------------------------------------------------------------------------- /extras/applovin interstitial/extras.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/extras/applovin interstitial/extras.html -------------------------------------------------------------------------------- /extras/banner ad/extras.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/extras/banner ad/extras.html -------------------------------------------------------------------------------- /extras/example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/extras/example.html -------------------------------------------------------------------------------- /extras/facebook banner/extras.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/extras/facebook banner/extras.html -------------------------------------------------------------------------------- /extras/facebook interstitial/extras.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/extras/facebook interstitial/extras.html -------------------------------------------------------------------------------- /extras/facebook rewarded video/extras.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/extras/facebook rewarded video/extras.html -------------------------------------------------------------------------------- /extras/interstitial ad/extras.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/extras/interstitial ad/extras.html -------------------------------------------------------------------------------- /extras/leadbolt/extras.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/extras/leadbolt/extras.html -------------------------------------------------------------------------------- /extras/rewarded ad/extras.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/extras/rewarded ad/extras.html -------------------------------------------------------------------------------- /extras/screen/extras.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/extras/screen/extras.html -------------------------------------------------------------------------------- /extras/screen/screen-book-analogy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/extras/screen/screen-book-analogy.png -------------------------------------------------------------------------------- /extras/startapp banner/extras.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/extras/startapp banner/extras.html -------------------------------------------------------------------------------- /extras/startapp interstitial/extras.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/extras/startapp interstitial/extras.html -------------------------------------------------------------------------------- /extras/unity banner/extras.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/extras/unity banner/extras.html -------------------------------------------------------------------------------- /extras/unity interstitial/extras.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/extras/unity interstitial/extras.html -------------------------------------------------------------------------------- /makeroid_theme/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/makeroid_theme/main.html -------------------------------------------------------------------------------- /mise.toml: -------------------------------------------------------------------------------- 1 | [tools] 2 | python = "3.11" 3 | -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kodular/Documentation/HEAD/requirements.txt --------------------------------------------------------------------------------