add lv_components as src/extra and minor fixes
This commit is contained in:
11
examples/widgets/spinner/index.rst
Normal file
11
examples/widgets/spinner/index.rst
Normal file
@@ -0,0 +1,11 @@
|
||||
C
|
||||
^
|
||||
|
||||
Simple spinner
|
||||
""""""""""""""""""""""""""""
|
||||
|
||||
.. lv_example:: lv_ex_widgets/lv_ex_spinner/lv_ex_spinner_1
|
||||
:language: c
|
||||
|
||||
MicroPython
|
||||
^^^^^^^^^^^
|
||||
12
examples/widgets/spinner/lv_spinner_example_1.c
Normal file
12
examples/widgets/spinner/lv_spinner_example_1.c
Normal file
@@ -0,0 +1,12 @@
|
||||
#include "../../../lvgl.h"
|
||||
#if LV_USE_SPINNER
|
||||
|
||||
void lv_ex_spinner_1(void)
|
||||
{
|
||||
/*Create a Preloader object*/
|
||||
lv_obj_t * spinner = lv_spinner_create(lv_scr_act(), 500, 60);
|
||||
lv_obj_set_size(spinner, 100, 100);
|
||||
lv_obj_align(spinner, NULL, LV_ALIGN_CENTER, 0, 0);
|
||||
}
|
||||
|
||||
#endif
|
||||
15
examples/widgets/spinner/lv_spinner_example_1.py
Normal file
15
examples/widgets/spinner/lv_spinner_example_1.py
Normal file
@@ -0,0 +1,15 @@
|
||||
# Create a style for the Preloader
|
||||
style = lv.style_t()
|
||||
lv.style_copy(style, lv.style_plain)
|
||||
style.line.width = 10 # 10 px thick arc
|
||||
style.line.color = lv.color_hex3(0x258) # Blueish arc color
|
||||
|
||||
style.body.border.color = lv.color_hex3(0xBBB) # Gray background color
|
||||
style.body.border.width = 10
|
||||
style.body.padding.left = 0
|
||||
|
||||
# Create a Preloader object
|
||||
preload = lv.preload(lv.scr_act())
|
||||
preload.set_size(100, 100)
|
||||
preload.align(None, lv.ALIGN.CENTER, 0, 0)
|
||||
preload.set_style(lv.preload.STYLE.MAIN, style)
|
||||
Reference in New Issue
Block a user