├── .github └── workflows │ ├── pr-check.yml │ ├── publish-runtimes.yml │ └── stale-issues.yml ├── .gitignore ├── .nojekyll ├── README.md ├── examples ├── .gitignore ├── CMakeLists copy.txt ├── CMakeLists.txt ├── components │ ├── README.md │ ├── basic │ │ ├── bar │ │ │ ├── bar.xml │ │ │ ├── bar_gen.c │ │ │ └── bar_gen.h │ │ ├── button │ │ │ ├── button.xml │ │ │ ├── button_gen.c │ │ │ └── button_gen.h │ │ ├── card │ │ │ ├── card.xml │ │ │ ├── card_gen.c │ │ │ ├── card_gen.h │ │ │ ├── card_header.xml │ │ │ ├── card_header_gen.c │ │ │ └── card_header_gen.h │ │ ├── circle_button │ │ │ ├── circle_button.xml │ │ │ ├── circle_button_gen.c │ │ │ └── circle_button_gen.h │ │ ├── column │ │ │ ├── column.xml │ │ │ ├── column_gen.c │ │ │ └── column_gen.h │ │ ├── div │ │ │ ├── div.xml │ │ │ ├── div_gen.c │ │ │ └── div_gen.h │ │ ├── icon_button │ │ │ ├── icon_button.xml │ │ │ ├── icon_button_gen.c │ │ │ └── icon_button_gen.h │ │ ├── roller │ │ │ ├── roller.xml │ │ │ ├── roller_gen.c │ │ │ └── roller_gen.h │ │ ├── row │ │ │ ├── row.xml │ │ │ ├── row_gen.c │ │ │ └── row_gen.h │ │ ├── slider │ │ │ ├── slider.xml │ │ │ ├── slider_gen.c │ │ │ └── slider_gen.h │ │ ├── switch │ │ │ ├── switch.xml │ │ │ ├── switch_gen.c │ │ │ └── switch_gen.h │ │ └── table │ │ │ ├── table.xml │ │ │ ├── table_gen.c │ │ │ └── table_gen.h │ └── cards │ │ ├── alarm │ │ ├── alarm.xml │ │ ├── alarm_gen.c │ │ └── alarm_gen.h │ │ ├── light_temperature │ │ ├── light_temperature.xml │ │ ├── light_temperature_gen.c │ │ └── light_temperature_gen.h │ │ ├── move_goal │ │ ├── move_goal.xml │ │ ├── move_goal_gen.c │ │ ├── move_goal_gen.h │ │ ├── stat_col.xml │ │ ├── stat_col_gen.c │ │ └── stat_col_gen.h │ │ ├── music_player │ │ ├── music_player.xml │ │ ├── music_player_gen.c │ │ └── music_player_gen.h │ │ ├── speaker_volume │ │ ├── speaker_volume.xml │ │ ├── speaker_volume_gen.c │ │ └── speaker_volume_gen.h │ │ ├── theme_swtcher │ │ ├── theme_switcher.xml │ │ ├── theme_switcher_gen.c │ │ └── theme_switcher_gen.h │ │ ├── thermostat │ │ ├── thermostat.xml │ │ ├── thermostat_gen.c │ │ └── thermostat_gen.h │ │ └── weather │ │ ├── location.xml │ │ ├── location_gen.c │ │ ├── location_gen.h │ │ ├── weather.xml │ │ ├── weather_gen.c │ │ └── weather_gen.h ├── examples.c ├── examples.h ├── examples_gen.c ├── examples_gen.h ├── file_list_gen.cmake ├── fonts │ ├── AbrilFatface │ │ └── AbrilFatface-Regular.ttf │ ├── BigShoulders │ │ └── BigShoulders-Bold.ttf │ ├── Geist │ │ ├── Geist-Light.ttf │ │ ├── Geist-Regular.ttf │ │ └── Geist-SemiBold.ttf │ ├── Literata │ │ └── Literata-Bold.ttf │ └── README.md ├── globals.xml ├── images │ ├── README.md │ ├── icon_cloudy.png │ ├── icon_heart.png │ ├── icon_minus.png │ ├── icon_pause.png │ ├── icon_pin.png │ ├── icon_play.png │ ├── icon_plus.png │ ├── icon_skip_back.png │ ├── icon_skip_forward.png │ ├── icon_sunny.png │ ├── icon_theme.png │ ├── icon_volume_max.png │ ├── icon_volume_min.png │ ├── icon_volume_none.png │ ├── light_temp_arc_bg.png │ ├── song_cover_1.png │ ├── weather_location_1_bg.png │ └── weather_location_2_bg.png ├── preview-bin │ ├── .hash │ ├── lved-runtime.js │ └── lved-runtime.wasm ├── project.xml ├── screens │ ├── README.md │ ├── elements.xml │ ├── elements_gen.c │ ├── elements_gen.h │ └── tests │ │ ├── show_move_goal.png │ │ ├── start.png │ │ └── test_1.xml └── widgets │ └── README.md └── tutorials ├── 1_hello_world ├── .gitignore ├── CMakeLists.txt ├── components │ └── README.md ├── file_list_gen.cmake ├── fonts │ ├── Montserrat_Medium.ttf │ ├── README.md │ └── font_medium_data.c ├── globals.xml ├── images │ └── README.md ├── preview-bin │ ├── .hash │ ├── lved-runtime.js │ └── lved-runtime.wasm ├── project.xml ├── screens │ ├── README.md │ ├── screen_hello_world.xml │ ├── screen_hello_world_gen.c │ └── screen_hello_world_gen.h ├── ui_hello_world.c ├── ui_hello_world.h ├── ui_hello_world_gen.c ├── ui_hello_world_gen.h └── widgets │ └── README.md ├── 2_new_component ├── .gitignore ├── CMakeLists.txt ├── components │ ├── README.md │ ├── buttons │ │ ├── button_normal.xml │ │ ├── button_normal_gen.c │ │ ├── button_normal_gen.h │ │ ├── button_warning.xml │ │ ├── button_warning_gen.c │ │ └── button_warning_gen.h │ ├── section.xml │ ├── section_gen.c │ └── section_gen.h ├── file_list_gen.cmake ├── fonts │ ├── Montserrat_Medium.ttf │ └── README.md ├── globals.xml ├── images │ └── README.md ├── preview-bin │ ├── .hash │ ├── lved-runtime.js │ └── lved-runtime.wasm ├── project.xml ├── screens │ ├── README.md │ ├── screen_components.xml │ ├── screen_components_gen.c │ └── screen_components_gen.h ├── ui_new_component.c ├── ui_new_component.h ├── ui_new_component_gen.c ├── ui_new_component_gen.h └── widgets │ └── README.md ├── 3_assets ├── .gitignore ├── CMakeLists.txt ├── components │ └── README.md ├── file_list_gen.cmake ├── fonts │ ├── Montserrat_Medium.ttf │ ├── Montserrat_Medium_ttf_data.c │ ├── README.md │ ├── montserrat_14_c_array_data.c │ └── montserrat_16_bin_file_data.c ├── globals.xml ├── images │ ├── README.md │ ├── flower_data_data.c │ └── orange-flower.png ├── preview-bin │ ├── .hash │ ├── lved-runtime.js │ └── lved-runtime.wasm ├── project.xml ├── screens │ ├── README.md │ ├── screen_assets.xml │ ├── screen_assets_gen.c │ └── screen_assets_gen.h ├── ui_assets.c ├── ui_assets.h ├── ui_assets_gen.c ├── ui_assets_gen.h └── widgets │ └── README.md ├── 4_screens ├── .gitignore ├── CMakeLists.txt ├── components │ └── README.md ├── file_list_gen.cmake ├── fonts │ └── README.md ├── globals.xml ├── images │ └── README.md ├── preview-bin │ ├── .hash │ ├── lved-runtime.js │ └── lved-runtime.wasm ├── project.xml ├── screens │ ├── README.md │ ├── screen_about.xml │ ├── screen_about_gen.c │ ├── screen_about_gen.h │ ├── screen_main.xml │ ├── screen_main_gen.c │ └── screen_main_gen.h ├── ui_screens.c ├── ui_screens.h ├── ui_screens_gen.c ├── ui_screens_gen.h └── widgets │ └── README.md ├── 5_layouts ├── .gitignore ├── CMakeLists.txt ├── components │ ├── README.md │ ├── button │ │ ├── button.xml │ │ ├── button_gen.c │ │ └── button_gen.h │ ├── column │ │ ├── column.xml │ │ ├── column_gen.c │ │ └── column_gen.h │ └── row │ │ ├── row.xml │ │ ├── row_gen.c │ │ └── row_gen.h ├── file_list_gen.cmake ├── fonts │ └── README.md ├── globals.xml ├── images │ └── README.md ├── preview-bin │ ├── .hash │ ├── lved-runtime.js │ └── lved-runtime.wasm ├── project.xml ├── screens │ ├── README.md │ ├── screen_layouts.xml │ ├── screen_layouts_gen.c │ └── screen_layouts_gen.h ├── ui_layouts.c ├── ui_layouts.h ├── ui_layouts_gen.c ├── ui_layouts_gen.h └── widgets │ └── README.md ├── 6_data_binding ├── .gitignore ├── CMakeLists.txt ├── components │ ├── README.md │ ├── round_button.xml │ ├── round_button_gen.c │ ├── round_button_gen.h │ ├── sliderbox.xml │ ├── sliderbox_gen.c │ └── sliderbox_gen.h ├── file_list_gen.cmake ├── fonts │ └── README.md ├── globals.xml ├── images │ └── README.md ├── preview-bin │ ├── .hash │ ├── lved-runtime.js │ └── lved-runtime.wasm ├── project.xml ├── screens │ ├── README.md │ ├── screen_data_bindings.xml │ ├── screen_data_bindings_gen.c │ └── screen_data_bindings_gen.h ├── ui_data_binding.c ├── ui_data_binding.h ├── ui_data_binding_gen.c ├── ui_data_binding_gen.h └── widgets │ └── README.md ├── 7_translations ├── .gitignore ├── CMakeLists.txt ├── components │ └── README.md ├── file_list_gen.cmake ├── fonts │ ├── Montserrat_Medium.ttf │ ├── README.md │ └── montserrat_14_data.c ├── globals.xml ├── images │ └── README.md ├── preview-bin │ ├── .hash │ ├── lved-runtime.js │ └── lved-runtime.wasm ├── project.xml ├── screens │ ├── README.md │ ├── screen_translations.xml │ ├── screen_translations_gen.c │ └── screen_translations_gen.h ├── translations.xml ├── ui_translations.c ├── ui_translations.h ├── ui_translations_gen.c ├── ui_translations_gen.h └── widgets │ └── README.md └── 8_animations ├── .gitignore ├── CMakeLists.txt ├── components ├── README.md ├── buttons │ ├── button_normal.xml │ ├── button_normal_gen.c │ └── button_normal_gen.h └── list │ ├── list.xml │ ├── list_gen.c │ └── list_gen.h ├── file_list_gen.cmake ├── fonts └── README.md ├── globals.xml ├── images └── README.md ├── preview-bin ├── .hash ├── lved-runtime.js └── lved-runtime.wasm ├── project.xml ├── screens ├── README.md ├── screen_animations.xml ├── screen_animations_gen.c └── screen_animations_gen.h ├── ui_animations.c ├── ui_animations.h ├── ui_animations_gen.c ├── ui_animations_gen.h └── widgets └── README.md /.github/workflows/pr-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/.github/workflows/pr-check.yml -------------------------------------------------------------------------------- /.github/workflows/publish-runtimes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/.github/workflows/publish-runtimes.yml -------------------------------------------------------------------------------- /.github/workflows/stale-issues.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/.github/workflows/stale-issues.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/.gitignore -------------------------------------------------------------------------------- /.nojekyll: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/README.md -------------------------------------------------------------------------------- /examples/.gitignore: -------------------------------------------------------------------------------- 1 | preview-build/ 2 | 3 | -------------------------------------------------------------------------------- /examples/CMakeLists copy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/examples/CMakeLists copy.txt -------------------------------------------------------------------------------- /examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/examples/CMakeLists.txt -------------------------------------------------------------------------------- /examples/components/README.md: -------------------------------------------------------------------------------- 1 | Create XML files here that start with a `` tag -------------------------------------------------------------------------------- /examples/components/basic/bar/bar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/examples/components/basic/bar/bar.xml -------------------------------------------------------------------------------- /examples/components/basic/bar/bar_gen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/examples/components/basic/bar/bar_gen.c -------------------------------------------------------------------------------- /examples/components/basic/bar/bar_gen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/examples/components/basic/bar/bar_gen.h -------------------------------------------------------------------------------- /examples/components/basic/button/button.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/examples/components/basic/button/button.xml -------------------------------------------------------------------------------- /examples/components/basic/button/button_gen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/examples/components/basic/button/button_gen.c -------------------------------------------------------------------------------- /examples/components/basic/button/button_gen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/examples/components/basic/button/button_gen.h -------------------------------------------------------------------------------- /examples/components/basic/card/card.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/examples/components/basic/card/card.xml -------------------------------------------------------------------------------- /examples/components/basic/card/card_gen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/examples/components/basic/card/card_gen.c -------------------------------------------------------------------------------- /examples/components/basic/card/card_gen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/examples/components/basic/card/card_gen.h -------------------------------------------------------------------------------- /examples/components/basic/card/card_header.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/examples/components/basic/card/card_header.xml -------------------------------------------------------------------------------- /examples/components/basic/card/card_header_gen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/examples/components/basic/card/card_header_gen.c -------------------------------------------------------------------------------- /examples/components/basic/card/card_header_gen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/examples/components/basic/card/card_header_gen.h -------------------------------------------------------------------------------- /examples/components/basic/circle_button/circle_button.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/examples/components/basic/circle_button/circle_button.xml -------------------------------------------------------------------------------- /examples/components/basic/circle_button/circle_button_gen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/examples/components/basic/circle_button/circle_button_gen.c -------------------------------------------------------------------------------- /examples/components/basic/circle_button/circle_button_gen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/examples/components/basic/circle_button/circle_button_gen.h -------------------------------------------------------------------------------- /examples/components/basic/column/column.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/examples/components/basic/column/column.xml -------------------------------------------------------------------------------- /examples/components/basic/column/column_gen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/examples/components/basic/column/column_gen.c -------------------------------------------------------------------------------- /examples/components/basic/column/column_gen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/examples/components/basic/column/column_gen.h -------------------------------------------------------------------------------- /examples/components/basic/div/div.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/examples/components/basic/div/div.xml -------------------------------------------------------------------------------- /examples/components/basic/div/div_gen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/examples/components/basic/div/div_gen.c -------------------------------------------------------------------------------- /examples/components/basic/div/div_gen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/examples/components/basic/div/div_gen.h -------------------------------------------------------------------------------- /examples/components/basic/icon_button/icon_button.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/examples/components/basic/icon_button/icon_button.xml -------------------------------------------------------------------------------- /examples/components/basic/icon_button/icon_button_gen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/examples/components/basic/icon_button/icon_button_gen.c -------------------------------------------------------------------------------- /examples/components/basic/icon_button/icon_button_gen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/examples/components/basic/icon_button/icon_button_gen.h -------------------------------------------------------------------------------- /examples/components/basic/roller/roller.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/examples/components/basic/roller/roller.xml -------------------------------------------------------------------------------- /examples/components/basic/roller/roller_gen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/examples/components/basic/roller/roller_gen.c -------------------------------------------------------------------------------- /examples/components/basic/roller/roller_gen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/examples/components/basic/roller/roller_gen.h -------------------------------------------------------------------------------- /examples/components/basic/row/row.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/examples/components/basic/row/row.xml -------------------------------------------------------------------------------- /examples/components/basic/row/row_gen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/examples/components/basic/row/row_gen.c -------------------------------------------------------------------------------- /examples/components/basic/row/row_gen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/examples/components/basic/row/row_gen.h -------------------------------------------------------------------------------- /examples/components/basic/slider/slider.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/examples/components/basic/slider/slider.xml -------------------------------------------------------------------------------- /examples/components/basic/slider/slider_gen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/examples/components/basic/slider/slider_gen.c -------------------------------------------------------------------------------- /examples/components/basic/slider/slider_gen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/examples/components/basic/slider/slider_gen.h -------------------------------------------------------------------------------- /examples/components/basic/switch/switch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/examples/components/basic/switch/switch.xml -------------------------------------------------------------------------------- /examples/components/basic/switch/switch_gen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/examples/components/basic/switch/switch_gen.c -------------------------------------------------------------------------------- /examples/components/basic/switch/switch_gen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/examples/components/basic/switch/switch_gen.h -------------------------------------------------------------------------------- /examples/components/basic/table/table.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/examples/components/basic/table/table.xml -------------------------------------------------------------------------------- /examples/components/basic/table/table_gen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/examples/components/basic/table/table_gen.c -------------------------------------------------------------------------------- /examples/components/basic/table/table_gen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/examples/components/basic/table/table_gen.h -------------------------------------------------------------------------------- /examples/components/cards/alarm/alarm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/examples/components/cards/alarm/alarm.xml -------------------------------------------------------------------------------- /examples/components/cards/alarm/alarm_gen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/examples/components/cards/alarm/alarm_gen.c -------------------------------------------------------------------------------- /examples/components/cards/alarm/alarm_gen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/examples/components/cards/alarm/alarm_gen.h -------------------------------------------------------------------------------- /examples/components/cards/light_temperature/light_temperature.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/examples/components/cards/light_temperature/light_temperature.xml -------------------------------------------------------------------------------- /examples/components/cards/light_temperature/light_temperature_gen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/examples/components/cards/light_temperature/light_temperature_gen.c -------------------------------------------------------------------------------- /examples/components/cards/light_temperature/light_temperature_gen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/examples/components/cards/light_temperature/light_temperature_gen.h -------------------------------------------------------------------------------- /examples/components/cards/move_goal/move_goal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/examples/components/cards/move_goal/move_goal.xml -------------------------------------------------------------------------------- /examples/components/cards/move_goal/move_goal_gen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/examples/components/cards/move_goal/move_goal_gen.c -------------------------------------------------------------------------------- /examples/components/cards/move_goal/move_goal_gen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/examples/components/cards/move_goal/move_goal_gen.h -------------------------------------------------------------------------------- /examples/components/cards/move_goal/stat_col.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/examples/components/cards/move_goal/stat_col.xml -------------------------------------------------------------------------------- /examples/components/cards/move_goal/stat_col_gen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/examples/components/cards/move_goal/stat_col_gen.c -------------------------------------------------------------------------------- /examples/components/cards/move_goal/stat_col_gen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/examples/components/cards/move_goal/stat_col_gen.h -------------------------------------------------------------------------------- /examples/components/cards/music_player/music_player.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/examples/components/cards/music_player/music_player.xml -------------------------------------------------------------------------------- /examples/components/cards/music_player/music_player_gen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/examples/components/cards/music_player/music_player_gen.c -------------------------------------------------------------------------------- /examples/components/cards/music_player/music_player_gen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/examples/components/cards/music_player/music_player_gen.h -------------------------------------------------------------------------------- /examples/components/cards/speaker_volume/speaker_volume.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/examples/components/cards/speaker_volume/speaker_volume.xml -------------------------------------------------------------------------------- /examples/components/cards/speaker_volume/speaker_volume_gen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/examples/components/cards/speaker_volume/speaker_volume_gen.c -------------------------------------------------------------------------------- /examples/components/cards/speaker_volume/speaker_volume_gen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/examples/components/cards/speaker_volume/speaker_volume_gen.h -------------------------------------------------------------------------------- /examples/components/cards/theme_swtcher/theme_switcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/examples/components/cards/theme_swtcher/theme_switcher.xml -------------------------------------------------------------------------------- /examples/components/cards/theme_swtcher/theme_switcher_gen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/examples/components/cards/theme_swtcher/theme_switcher_gen.c -------------------------------------------------------------------------------- /examples/components/cards/theme_swtcher/theme_switcher_gen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/examples/components/cards/theme_swtcher/theme_switcher_gen.h -------------------------------------------------------------------------------- /examples/components/cards/thermostat/thermostat.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/examples/components/cards/thermostat/thermostat.xml -------------------------------------------------------------------------------- /examples/components/cards/thermostat/thermostat_gen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/examples/components/cards/thermostat/thermostat_gen.c -------------------------------------------------------------------------------- /examples/components/cards/thermostat/thermostat_gen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/examples/components/cards/thermostat/thermostat_gen.h -------------------------------------------------------------------------------- /examples/components/cards/weather/location.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/examples/components/cards/weather/location.xml -------------------------------------------------------------------------------- /examples/components/cards/weather/location_gen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/examples/components/cards/weather/location_gen.c -------------------------------------------------------------------------------- /examples/components/cards/weather/location_gen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/examples/components/cards/weather/location_gen.h -------------------------------------------------------------------------------- /examples/components/cards/weather/weather.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/examples/components/cards/weather/weather.xml -------------------------------------------------------------------------------- /examples/components/cards/weather/weather_gen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/examples/components/cards/weather/weather_gen.c -------------------------------------------------------------------------------- /examples/components/cards/weather/weather_gen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/examples/components/cards/weather/weather_gen.h -------------------------------------------------------------------------------- /examples/examples.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/examples/examples.c -------------------------------------------------------------------------------- /examples/examples.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/examples/examples.h -------------------------------------------------------------------------------- /examples/examples_gen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/examples/examples_gen.c -------------------------------------------------------------------------------- /examples/examples_gen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/examples/examples_gen.h -------------------------------------------------------------------------------- /examples/file_list_gen.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/examples/file_list_gen.cmake -------------------------------------------------------------------------------- /examples/fonts/AbrilFatface/AbrilFatface-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/examples/fonts/AbrilFatface/AbrilFatface-Regular.ttf -------------------------------------------------------------------------------- /examples/fonts/BigShoulders/BigShoulders-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/examples/fonts/BigShoulders/BigShoulders-Bold.ttf -------------------------------------------------------------------------------- /examples/fonts/Geist/Geist-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/examples/fonts/Geist/Geist-Light.ttf -------------------------------------------------------------------------------- /examples/fonts/Geist/Geist-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/examples/fonts/Geist/Geist-Regular.ttf -------------------------------------------------------------------------------- /examples/fonts/Geist/Geist-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/examples/fonts/Geist/Geist-SemiBold.ttf -------------------------------------------------------------------------------- /examples/fonts/Literata/Literata-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/examples/fonts/Literata/Literata-Bold.ttf -------------------------------------------------------------------------------- /examples/fonts/README.md: -------------------------------------------------------------------------------- 1 | Place ttf or woff files here -------------------------------------------------------------------------------- /examples/globals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/examples/globals.xml -------------------------------------------------------------------------------- /examples/images/README.md: -------------------------------------------------------------------------------- 1 | Place PNG images here -------------------------------------------------------------------------------- /examples/images/icon_cloudy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/examples/images/icon_cloudy.png -------------------------------------------------------------------------------- /examples/images/icon_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/examples/images/icon_heart.png -------------------------------------------------------------------------------- /examples/images/icon_minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/examples/images/icon_minus.png -------------------------------------------------------------------------------- /examples/images/icon_pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/examples/images/icon_pause.png -------------------------------------------------------------------------------- /examples/images/icon_pin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/examples/images/icon_pin.png -------------------------------------------------------------------------------- /examples/images/icon_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/examples/images/icon_play.png -------------------------------------------------------------------------------- /examples/images/icon_plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/examples/images/icon_plus.png -------------------------------------------------------------------------------- /examples/images/icon_skip_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/examples/images/icon_skip_back.png -------------------------------------------------------------------------------- /examples/images/icon_skip_forward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/examples/images/icon_skip_forward.png -------------------------------------------------------------------------------- /examples/images/icon_sunny.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/examples/images/icon_sunny.png -------------------------------------------------------------------------------- /examples/images/icon_theme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/examples/images/icon_theme.png -------------------------------------------------------------------------------- /examples/images/icon_volume_max.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/examples/images/icon_volume_max.png -------------------------------------------------------------------------------- /examples/images/icon_volume_min.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/examples/images/icon_volume_min.png -------------------------------------------------------------------------------- /examples/images/icon_volume_none.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/examples/images/icon_volume_none.png -------------------------------------------------------------------------------- /examples/images/light_temp_arc_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/examples/images/light_temp_arc_bg.png -------------------------------------------------------------------------------- /examples/images/song_cover_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/examples/images/song_cover_1.png -------------------------------------------------------------------------------- /examples/images/weather_location_1_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/examples/images/weather_location_1_bg.png -------------------------------------------------------------------------------- /examples/images/weather_location_2_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/examples/images/weather_location_2_bg.png -------------------------------------------------------------------------------- /examples/preview-bin/.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/examples/preview-bin/.hash -------------------------------------------------------------------------------- /examples/preview-bin/lved-runtime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/examples/preview-bin/lved-runtime.js -------------------------------------------------------------------------------- /examples/preview-bin/lved-runtime.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/examples/preview-bin/lved-runtime.wasm -------------------------------------------------------------------------------- /examples/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/examples/project.xml -------------------------------------------------------------------------------- /examples/screens/README.md: -------------------------------------------------------------------------------- 1 | Create XML files here that start with a `` tag -------------------------------------------------------------------------------- /examples/screens/elements.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/examples/screens/elements.xml -------------------------------------------------------------------------------- /examples/screens/elements_gen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/examples/screens/elements_gen.c -------------------------------------------------------------------------------- /examples/screens/elements_gen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/examples/screens/elements_gen.h -------------------------------------------------------------------------------- /examples/screens/tests/show_move_goal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/examples/screens/tests/show_move_goal.png -------------------------------------------------------------------------------- /examples/screens/tests/start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/examples/screens/tests/start.png -------------------------------------------------------------------------------- /examples/screens/tests/test_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/examples/screens/tests/test_1.xml -------------------------------------------------------------------------------- /examples/widgets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/examples/widgets/README.md -------------------------------------------------------------------------------- /tutorials/1_hello_world/.gitignore: -------------------------------------------------------------------------------- 1 | preview-build/ -------------------------------------------------------------------------------- /tutorials/1_hello_world/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/1_hello_world/CMakeLists.txt -------------------------------------------------------------------------------- /tutorials/1_hello_world/components/README.md: -------------------------------------------------------------------------------- 1 | Create XML files here that start with a `` tag 2 | -------------------------------------------------------------------------------- /tutorials/1_hello_world/file_list_gen.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/1_hello_world/file_list_gen.cmake -------------------------------------------------------------------------------- /tutorials/1_hello_world/fonts/Montserrat_Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/1_hello_world/fonts/Montserrat_Medium.ttf -------------------------------------------------------------------------------- /tutorials/1_hello_world/fonts/README.md: -------------------------------------------------------------------------------- 1 | Place ttf or woff files here 2 | -------------------------------------------------------------------------------- /tutorials/1_hello_world/fonts/font_medium_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/1_hello_world/fonts/font_medium_data.c -------------------------------------------------------------------------------- /tutorials/1_hello_world/globals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/1_hello_world/globals.xml -------------------------------------------------------------------------------- /tutorials/1_hello_world/images/README.md: -------------------------------------------------------------------------------- 1 | Place PNG images here 2 | -------------------------------------------------------------------------------- /tutorials/1_hello_world/preview-bin/.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/1_hello_world/preview-bin/.hash -------------------------------------------------------------------------------- /tutorials/1_hello_world/preview-bin/lved-runtime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/1_hello_world/preview-bin/lved-runtime.js -------------------------------------------------------------------------------- /tutorials/1_hello_world/preview-bin/lved-runtime.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/1_hello_world/preview-bin/lved-runtime.wasm -------------------------------------------------------------------------------- /tutorials/1_hello_world/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/1_hello_world/project.xml -------------------------------------------------------------------------------- /tutorials/1_hello_world/screens/README.md: -------------------------------------------------------------------------------- 1 | Create XML files here that start with a `` tag 2 | -------------------------------------------------------------------------------- /tutorials/1_hello_world/screens/screen_hello_world.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/1_hello_world/screens/screen_hello_world.xml -------------------------------------------------------------------------------- /tutorials/1_hello_world/screens/screen_hello_world_gen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/1_hello_world/screens/screen_hello_world_gen.c -------------------------------------------------------------------------------- /tutorials/1_hello_world/screens/screen_hello_world_gen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/1_hello_world/screens/screen_hello_world_gen.h -------------------------------------------------------------------------------- /tutorials/1_hello_world/ui_hello_world.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/1_hello_world/ui_hello_world.c -------------------------------------------------------------------------------- /tutorials/1_hello_world/ui_hello_world.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/1_hello_world/ui_hello_world.h -------------------------------------------------------------------------------- /tutorials/1_hello_world/ui_hello_world_gen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/1_hello_world/ui_hello_world_gen.c -------------------------------------------------------------------------------- /tutorials/1_hello_world/ui_hello_world_gen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/1_hello_world/ui_hello_world_gen.h -------------------------------------------------------------------------------- /tutorials/1_hello_world/widgets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/1_hello_world/widgets/README.md -------------------------------------------------------------------------------- /tutorials/2_new_component/.gitignore: -------------------------------------------------------------------------------- 1 | preview-build/ -------------------------------------------------------------------------------- /tutorials/2_new_component/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/2_new_component/CMakeLists.txt -------------------------------------------------------------------------------- /tutorials/2_new_component/components/README.md: -------------------------------------------------------------------------------- 1 | Create XML files here that start with a `` tag 2 | -------------------------------------------------------------------------------- /tutorials/2_new_component/components/buttons/button_normal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/2_new_component/components/buttons/button_normal.xml -------------------------------------------------------------------------------- /tutorials/2_new_component/components/buttons/button_normal_gen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/2_new_component/components/buttons/button_normal_gen.c -------------------------------------------------------------------------------- /tutorials/2_new_component/components/buttons/button_normal_gen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/2_new_component/components/buttons/button_normal_gen.h -------------------------------------------------------------------------------- /tutorials/2_new_component/components/buttons/button_warning.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/2_new_component/components/buttons/button_warning.xml -------------------------------------------------------------------------------- /tutorials/2_new_component/components/buttons/button_warning_gen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/2_new_component/components/buttons/button_warning_gen.c -------------------------------------------------------------------------------- /tutorials/2_new_component/components/buttons/button_warning_gen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/2_new_component/components/buttons/button_warning_gen.h -------------------------------------------------------------------------------- /tutorials/2_new_component/components/section.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/2_new_component/components/section.xml -------------------------------------------------------------------------------- /tutorials/2_new_component/components/section_gen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/2_new_component/components/section_gen.c -------------------------------------------------------------------------------- /tutorials/2_new_component/components/section_gen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/2_new_component/components/section_gen.h -------------------------------------------------------------------------------- /tutorials/2_new_component/file_list_gen.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/2_new_component/file_list_gen.cmake -------------------------------------------------------------------------------- /tutorials/2_new_component/fonts/Montserrat_Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/2_new_component/fonts/Montserrat_Medium.ttf -------------------------------------------------------------------------------- /tutorials/2_new_component/fonts/README.md: -------------------------------------------------------------------------------- 1 | Place ttf or woff files here 2 | -------------------------------------------------------------------------------- /tutorials/2_new_component/globals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/2_new_component/globals.xml -------------------------------------------------------------------------------- /tutorials/2_new_component/images/README.md: -------------------------------------------------------------------------------- 1 | Place PNG images here 2 | -------------------------------------------------------------------------------- /tutorials/2_new_component/preview-bin/.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/2_new_component/preview-bin/.hash -------------------------------------------------------------------------------- /tutorials/2_new_component/preview-bin/lved-runtime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/2_new_component/preview-bin/lved-runtime.js -------------------------------------------------------------------------------- /tutorials/2_new_component/preview-bin/lved-runtime.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/2_new_component/preview-bin/lved-runtime.wasm -------------------------------------------------------------------------------- /tutorials/2_new_component/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/2_new_component/project.xml -------------------------------------------------------------------------------- /tutorials/2_new_component/screens/README.md: -------------------------------------------------------------------------------- 1 | Create XML files here that start with a `` tag 2 | -------------------------------------------------------------------------------- /tutorials/2_new_component/screens/screen_components.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/2_new_component/screens/screen_components.xml -------------------------------------------------------------------------------- /tutorials/2_new_component/screens/screen_components_gen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/2_new_component/screens/screen_components_gen.c -------------------------------------------------------------------------------- /tutorials/2_new_component/screens/screen_components_gen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/2_new_component/screens/screen_components_gen.h -------------------------------------------------------------------------------- /tutorials/2_new_component/ui_new_component.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/2_new_component/ui_new_component.c -------------------------------------------------------------------------------- /tutorials/2_new_component/ui_new_component.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/2_new_component/ui_new_component.h -------------------------------------------------------------------------------- /tutorials/2_new_component/ui_new_component_gen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/2_new_component/ui_new_component_gen.c -------------------------------------------------------------------------------- /tutorials/2_new_component/ui_new_component_gen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/2_new_component/ui_new_component_gen.h -------------------------------------------------------------------------------- /tutorials/2_new_component/widgets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/2_new_component/widgets/README.md -------------------------------------------------------------------------------- /tutorials/3_assets/.gitignore: -------------------------------------------------------------------------------- 1 | preview-build/ -------------------------------------------------------------------------------- /tutorials/3_assets/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/3_assets/CMakeLists.txt -------------------------------------------------------------------------------- /tutorials/3_assets/components/README.md: -------------------------------------------------------------------------------- 1 | Create XML files here that start with a `` tag 2 | -------------------------------------------------------------------------------- /tutorials/3_assets/file_list_gen.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/3_assets/file_list_gen.cmake -------------------------------------------------------------------------------- /tutorials/3_assets/fonts/Montserrat_Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/3_assets/fonts/Montserrat_Medium.ttf -------------------------------------------------------------------------------- /tutorials/3_assets/fonts/Montserrat_Medium_ttf_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/3_assets/fonts/Montserrat_Medium_ttf_data.c -------------------------------------------------------------------------------- /tutorials/3_assets/fonts/README.md: -------------------------------------------------------------------------------- 1 | Place ttf or woff files here 2 | -------------------------------------------------------------------------------- /tutorials/3_assets/fonts/montserrat_14_c_array_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/3_assets/fonts/montserrat_14_c_array_data.c -------------------------------------------------------------------------------- /tutorials/3_assets/fonts/montserrat_16_bin_file_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/3_assets/fonts/montserrat_16_bin_file_data.c -------------------------------------------------------------------------------- /tutorials/3_assets/globals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/3_assets/globals.xml -------------------------------------------------------------------------------- /tutorials/3_assets/images/README.md: -------------------------------------------------------------------------------- 1 | Place PNG images here 2 | -------------------------------------------------------------------------------- /tutorials/3_assets/images/flower_data_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/3_assets/images/flower_data_data.c -------------------------------------------------------------------------------- /tutorials/3_assets/images/orange-flower.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/3_assets/images/orange-flower.png -------------------------------------------------------------------------------- /tutorials/3_assets/preview-bin/.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/3_assets/preview-bin/.hash -------------------------------------------------------------------------------- /tutorials/3_assets/preview-bin/lved-runtime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/3_assets/preview-bin/lved-runtime.js -------------------------------------------------------------------------------- /tutorials/3_assets/preview-bin/lved-runtime.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/3_assets/preview-bin/lved-runtime.wasm -------------------------------------------------------------------------------- /tutorials/3_assets/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/3_assets/project.xml -------------------------------------------------------------------------------- /tutorials/3_assets/screens/README.md: -------------------------------------------------------------------------------- 1 | Create XML files here that start with a `` tag 2 | -------------------------------------------------------------------------------- /tutorials/3_assets/screens/screen_assets.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/3_assets/screens/screen_assets.xml -------------------------------------------------------------------------------- /tutorials/3_assets/screens/screen_assets_gen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/3_assets/screens/screen_assets_gen.c -------------------------------------------------------------------------------- /tutorials/3_assets/screens/screen_assets_gen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/3_assets/screens/screen_assets_gen.h -------------------------------------------------------------------------------- /tutorials/3_assets/ui_assets.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/3_assets/ui_assets.c -------------------------------------------------------------------------------- /tutorials/3_assets/ui_assets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/3_assets/ui_assets.h -------------------------------------------------------------------------------- /tutorials/3_assets/ui_assets_gen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/3_assets/ui_assets_gen.c -------------------------------------------------------------------------------- /tutorials/3_assets/ui_assets_gen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/3_assets/ui_assets_gen.h -------------------------------------------------------------------------------- /tutorials/3_assets/widgets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/3_assets/widgets/README.md -------------------------------------------------------------------------------- /tutorials/4_screens/.gitignore: -------------------------------------------------------------------------------- 1 | preview-build/ -------------------------------------------------------------------------------- /tutorials/4_screens/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/4_screens/CMakeLists.txt -------------------------------------------------------------------------------- /tutorials/4_screens/components/README.md: -------------------------------------------------------------------------------- 1 | Create XML files here that start with a `` tag 2 | -------------------------------------------------------------------------------- /tutorials/4_screens/file_list_gen.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/4_screens/file_list_gen.cmake -------------------------------------------------------------------------------- /tutorials/4_screens/fonts/README.md: -------------------------------------------------------------------------------- 1 | Place ttf or woff files here 2 | -------------------------------------------------------------------------------- /tutorials/4_screens/globals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/4_screens/globals.xml -------------------------------------------------------------------------------- /tutorials/4_screens/images/README.md: -------------------------------------------------------------------------------- 1 | Place PNG images here 2 | -------------------------------------------------------------------------------- /tutorials/4_screens/preview-bin/.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/4_screens/preview-bin/.hash -------------------------------------------------------------------------------- /tutorials/4_screens/preview-bin/lved-runtime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/4_screens/preview-bin/lved-runtime.js -------------------------------------------------------------------------------- /tutorials/4_screens/preview-bin/lved-runtime.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/4_screens/preview-bin/lved-runtime.wasm -------------------------------------------------------------------------------- /tutorials/4_screens/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/4_screens/project.xml -------------------------------------------------------------------------------- /tutorials/4_screens/screens/README.md: -------------------------------------------------------------------------------- 1 | Create XML files here that start with a `` tag 2 | -------------------------------------------------------------------------------- /tutorials/4_screens/screens/screen_about.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/4_screens/screens/screen_about.xml -------------------------------------------------------------------------------- /tutorials/4_screens/screens/screen_about_gen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/4_screens/screens/screen_about_gen.c -------------------------------------------------------------------------------- /tutorials/4_screens/screens/screen_about_gen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/4_screens/screens/screen_about_gen.h -------------------------------------------------------------------------------- /tutorials/4_screens/screens/screen_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/4_screens/screens/screen_main.xml -------------------------------------------------------------------------------- /tutorials/4_screens/screens/screen_main_gen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/4_screens/screens/screen_main_gen.c -------------------------------------------------------------------------------- /tutorials/4_screens/screens/screen_main_gen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/4_screens/screens/screen_main_gen.h -------------------------------------------------------------------------------- /tutorials/4_screens/ui_screens.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/4_screens/ui_screens.c -------------------------------------------------------------------------------- /tutorials/4_screens/ui_screens.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/4_screens/ui_screens.h -------------------------------------------------------------------------------- /tutorials/4_screens/ui_screens_gen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/4_screens/ui_screens_gen.c -------------------------------------------------------------------------------- /tutorials/4_screens/ui_screens_gen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/4_screens/ui_screens_gen.h -------------------------------------------------------------------------------- /tutorials/4_screens/widgets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/4_screens/widgets/README.md -------------------------------------------------------------------------------- /tutorials/5_layouts/.gitignore: -------------------------------------------------------------------------------- 1 | preview-build/ -------------------------------------------------------------------------------- /tutorials/5_layouts/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/5_layouts/CMakeLists.txt -------------------------------------------------------------------------------- /tutorials/5_layouts/components/README.md: -------------------------------------------------------------------------------- 1 | Create XML files here that start with a `` tag 2 | -------------------------------------------------------------------------------- /tutorials/5_layouts/components/button/button.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/5_layouts/components/button/button.xml -------------------------------------------------------------------------------- /tutorials/5_layouts/components/button/button_gen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/5_layouts/components/button/button_gen.c -------------------------------------------------------------------------------- /tutorials/5_layouts/components/button/button_gen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/5_layouts/components/button/button_gen.h -------------------------------------------------------------------------------- /tutorials/5_layouts/components/column/column.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/5_layouts/components/column/column.xml -------------------------------------------------------------------------------- /tutorials/5_layouts/components/column/column_gen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/5_layouts/components/column/column_gen.c -------------------------------------------------------------------------------- /tutorials/5_layouts/components/column/column_gen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/5_layouts/components/column/column_gen.h -------------------------------------------------------------------------------- /tutorials/5_layouts/components/row/row.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/5_layouts/components/row/row.xml -------------------------------------------------------------------------------- /tutorials/5_layouts/components/row/row_gen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/5_layouts/components/row/row_gen.c -------------------------------------------------------------------------------- /tutorials/5_layouts/components/row/row_gen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/5_layouts/components/row/row_gen.h -------------------------------------------------------------------------------- /tutorials/5_layouts/file_list_gen.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/5_layouts/file_list_gen.cmake -------------------------------------------------------------------------------- /tutorials/5_layouts/fonts/README.md: -------------------------------------------------------------------------------- 1 | Place ttf or woff files here 2 | -------------------------------------------------------------------------------- /tutorials/5_layouts/globals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/5_layouts/globals.xml -------------------------------------------------------------------------------- /tutorials/5_layouts/images/README.md: -------------------------------------------------------------------------------- 1 | Place PNG images here 2 | -------------------------------------------------------------------------------- /tutorials/5_layouts/preview-bin/.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/5_layouts/preview-bin/.hash -------------------------------------------------------------------------------- /tutorials/5_layouts/preview-bin/lved-runtime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/5_layouts/preview-bin/lved-runtime.js -------------------------------------------------------------------------------- /tutorials/5_layouts/preview-bin/lved-runtime.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/5_layouts/preview-bin/lved-runtime.wasm -------------------------------------------------------------------------------- /tutorials/5_layouts/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/5_layouts/project.xml -------------------------------------------------------------------------------- /tutorials/5_layouts/screens/README.md: -------------------------------------------------------------------------------- 1 | Create XML files here that start with a `` tag 2 | -------------------------------------------------------------------------------- /tutorials/5_layouts/screens/screen_layouts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/5_layouts/screens/screen_layouts.xml -------------------------------------------------------------------------------- /tutorials/5_layouts/screens/screen_layouts_gen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/5_layouts/screens/screen_layouts_gen.c -------------------------------------------------------------------------------- /tutorials/5_layouts/screens/screen_layouts_gen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/5_layouts/screens/screen_layouts_gen.h -------------------------------------------------------------------------------- /tutorials/5_layouts/ui_layouts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/5_layouts/ui_layouts.c -------------------------------------------------------------------------------- /tutorials/5_layouts/ui_layouts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/5_layouts/ui_layouts.h -------------------------------------------------------------------------------- /tutorials/5_layouts/ui_layouts_gen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/5_layouts/ui_layouts_gen.c -------------------------------------------------------------------------------- /tutorials/5_layouts/ui_layouts_gen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/5_layouts/ui_layouts_gen.h -------------------------------------------------------------------------------- /tutorials/5_layouts/widgets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/5_layouts/widgets/README.md -------------------------------------------------------------------------------- /tutorials/6_data_binding/.gitignore: -------------------------------------------------------------------------------- 1 | preview-build/ -------------------------------------------------------------------------------- /tutorials/6_data_binding/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/6_data_binding/CMakeLists.txt -------------------------------------------------------------------------------- /tutorials/6_data_binding/components/README.md: -------------------------------------------------------------------------------- 1 | Create XML files here that start with a `` tag 2 | -------------------------------------------------------------------------------- /tutorials/6_data_binding/components/round_button.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/6_data_binding/components/round_button.xml -------------------------------------------------------------------------------- /tutorials/6_data_binding/components/round_button_gen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/6_data_binding/components/round_button_gen.c -------------------------------------------------------------------------------- /tutorials/6_data_binding/components/round_button_gen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/6_data_binding/components/round_button_gen.h -------------------------------------------------------------------------------- /tutorials/6_data_binding/components/sliderbox.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/6_data_binding/components/sliderbox.xml -------------------------------------------------------------------------------- /tutorials/6_data_binding/components/sliderbox_gen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/6_data_binding/components/sliderbox_gen.c -------------------------------------------------------------------------------- /tutorials/6_data_binding/components/sliderbox_gen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/6_data_binding/components/sliderbox_gen.h -------------------------------------------------------------------------------- /tutorials/6_data_binding/file_list_gen.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/6_data_binding/file_list_gen.cmake -------------------------------------------------------------------------------- /tutorials/6_data_binding/fonts/README.md: -------------------------------------------------------------------------------- 1 | Place ttf or woff files here 2 | -------------------------------------------------------------------------------- /tutorials/6_data_binding/globals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/6_data_binding/globals.xml -------------------------------------------------------------------------------- /tutorials/6_data_binding/images/README.md: -------------------------------------------------------------------------------- 1 | Place PNG images here 2 | -------------------------------------------------------------------------------- /tutorials/6_data_binding/preview-bin/.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/6_data_binding/preview-bin/.hash -------------------------------------------------------------------------------- /tutorials/6_data_binding/preview-bin/lved-runtime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/6_data_binding/preview-bin/lved-runtime.js -------------------------------------------------------------------------------- /tutorials/6_data_binding/preview-bin/lved-runtime.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/6_data_binding/preview-bin/lved-runtime.wasm -------------------------------------------------------------------------------- /tutorials/6_data_binding/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/6_data_binding/project.xml -------------------------------------------------------------------------------- /tutorials/6_data_binding/screens/README.md: -------------------------------------------------------------------------------- 1 | Create XML files here that start with a `` tag 2 | -------------------------------------------------------------------------------- /tutorials/6_data_binding/screens/screen_data_bindings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/6_data_binding/screens/screen_data_bindings.xml -------------------------------------------------------------------------------- /tutorials/6_data_binding/screens/screen_data_bindings_gen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/6_data_binding/screens/screen_data_bindings_gen.c -------------------------------------------------------------------------------- /tutorials/6_data_binding/screens/screen_data_bindings_gen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/6_data_binding/screens/screen_data_bindings_gen.h -------------------------------------------------------------------------------- /tutorials/6_data_binding/ui_data_binding.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/6_data_binding/ui_data_binding.c -------------------------------------------------------------------------------- /tutorials/6_data_binding/ui_data_binding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/6_data_binding/ui_data_binding.h -------------------------------------------------------------------------------- /tutorials/6_data_binding/ui_data_binding_gen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/6_data_binding/ui_data_binding_gen.c -------------------------------------------------------------------------------- /tutorials/6_data_binding/ui_data_binding_gen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/6_data_binding/ui_data_binding_gen.h -------------------------------------------------------------------------------- /tutorials/6_data_binding/widgets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/6_data_binding/widgets/README.md -------------------------------------------------------------------------------- /tutorials/7_translations/.gitignore: -------------------------------------------------------------------------------- 1 | preview-build/ -------------------------------------------------------------------------------- /tutorials/7_translations/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/7_translations/CMakeLists.txt -------------------------------------------------------------------------------- /tutorials/7_translations/components/README.md: -------------------------------------------------------------------------------- 1 | Create XML files here that start with a `` tag 2 | -------------------------------------------------------------------------------- /tutorials/7_translations/file_list_gen.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/7_translations/file_list_gen.cmake -------------------------------------------------------------------------------- /tutorials/7_translations/fonts/Montserrat_Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/7_translations/fonts/Montserrat_Medium.ttf -------------------------------------------------------------------------------- /tutorials/7_translations/fonts/README.md: -------------------------------------------------------------------------------- 1 | Place ttf or woff files here 2 | -------------------------------------------------------------------------------- /tutorials/7_translations/fonts/montserrat_14_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/7_translations/fonts/montserrat_14_data.c -------------------------------------------------------------------------------- /tutorials/7_translations/globals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/7_translations/globals.xml -------------------------------------------------------------------------------- /tutorials/7_translations/images/README.md: -------------------------------------------------------------------------------- 1 | Place PNG images here 2 | -------------------------------------------------------------------------------- /tutorials/7_translations/preview-bin/.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/7_translations/preview-bin/.hash -------------------------------------------------------------------------------- /tutorials/7_translations/preview-bin/lved-runtime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/7_translations/preview-bin/lved-runtime.js -------------------------------------------------------------------------------- /tutorials/7_translations/preview-bin/lved-runtime.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/7_translations/preview-bin/lved-runtime.wasm -------------------------------------------------------------------------------- /tutorials/7_translations/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/7_translations/project.xml -------------------------------------------------------------------------------- /tutorials/7_translations/screens/README.md: -------------------------------------------------------------------------------- 1 | Create XML files here that start with a `` tag 2 | -------------------------------------------------------------------------------- /tutorials/7_translations/screens/screen_translations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/7_translations/screens/screen_translations.xml -------------------------------------------------------------------------------- /tutorials/7_translations/screens/screen_translations_gen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/7_translations/screens/screen_translations_gen.c -------------------------------------------------------------------------------- /tutorials/7_translations/screens/screen_translations_gen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/7_translations/screens/screen_translations_gen.h -------------------------------------------------------------------------------- /tutorials/7_translations/translations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/7_translations/translations.xml -------------------------------------------------------------------------------- /tutorials/7_translations/ui_translations.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/7_translations/ui_translations.c -------------------------------------------------------------------------------- /tutorials/7_translations/ui_translations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/7_translations/ui_translations.h -------------------------------------------------------------------------------- /tutorials/7_translations/ui_translations_gen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/7_translations/ui_translations_gen.c -------------------------------------------------------------------------------- /tutorials/7_translations/ui_translations_gen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/7_translations/ui_translations_gen.h -------------------------------------------------------------------------------- /tutorials/7_translations/widgets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/7_translations/widgets/README.md -------------------------------------------------------------------------------- /tutorials/8_animations/.gitignore: -------------------------------------------------------------------------------- 1 | preview-build/ -------------------------------------------------------------------------------- /tutorials/8_animations/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/8_animations/CMakeLists.txt -------------------------------------------------------------------------------- /tutorials/8_animations/components/README.md: -------------------------------------------------------------------------------- 1 | Create XML files here that start with a `` tag 2 | -------------------------------------------------------------------------------- /tutorials/8_animations/components/buttons/button_normal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/8_animations/components/buttons/button_normal.xml -------------------------------------------------------------------------------- /tutorials/8_animations/components/buttons/button_normal_gen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/8_animations/components/buttons/button_normal_gen.c -------------------------------------------------------------------------------- /tutorials/8_animations/components/buttons/button_normal_gen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/8_animations/components/buttons/button_normal_gen.h -------------------------------------------------------------------------------- /tutorials/8_animations/components/list/list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/8_animations/components/list/list.xml -------------------------------------------------------------------------------- /tutorials/8_animations/components/list/list_gen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/8_animations/components/list/list_gen.c -------------------------------------------------------------------------------- /tutorials/8_animations/components/list/list_gen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/8_animations/components/list/list_gen.h -------------------------------------------------------------------------------- /tutorials/8_animations/file_list_gen.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/8_animations/file_list_gen.cmake -------------------------------------------------------------------------------- /tutorials/8_animations/fonts/README.md: -------------------------------------------------------------------------------- 1 | Place ttf or woff files here 2 | -------------------------------------------------------------------------------- /tutorials/8_animations/globals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/8_animations/globals.xml -------------------------------------------------------------------------------- /tutorials/8_animations/images/README.md: -------------------------------------------------------------------------------- 1 | Place PNG images here 2 | -------------------------------------------------------------------------------- /tutorials/8_animations/preview-bin/.hash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/8_animations/preview-bin/.hash -------------------------------------------------------------------------------- /tutorials/8_animations/preview-bin/lved-runtime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/8_animations/preview-bin/lved-runtime.js -------------------------------------------------------------------------------- /tutorials/8_animations/preview-bin/lved-runtime.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/8_animations/preview-bin/lved-runtime.wasm -------------------------------------------------------------------------------- /tutorials/8_animations/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/8_animations/project.xml -------------------------------------------------------------------------------- /tutorials/8_animations/screens/README.md: -------------------------------------------------------------------------------- 1 | Create XML files here that start with a `` tag 2 | -------------------------------------------------------------------------------- /tutorials/8_animations/screens/screen_animations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/8_animations/screens/screen_animations.xml -------------------------------------------------------------------------------- /tutorials/8_animations/screens/screen_animations_gen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/8_animations/screens/screen_animations_gen.c -------------------------------------------------------------------------------- /tutorials/8_animations/screens/screen_animations_gen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/8_animations/screens/screen_animations_gen.h -------------------------------------------------------------------------------- /tutorials/8_animations/ui_animations.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/8_animations/ui_animations.c -------------------------------------------------------------------------------- /tutorials/8_animations/ui_animations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/8_animations/ui_animations.h -------------------------------------------------------------------------------- /tutorials/8_animations/ui_animations_gen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/8_animations/ui_animations_gen.c -------------------------------------------------------------------------------- /tutorials/8_animations/ui_animations_gen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/8_animations/ui_animations_gen.h -------------------------------------------------------------------------------- /tutorials/8_animations/widgets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl_editor/HEAD/tutorials/8_animations/widgets/README.md --------------------------------------------------------------------------------