mirror of
https://gitee.com/Lyon1998/pikapython.git
synced 2025-01-15 17:02:53 +08:00
71364445e0
* support event for lvgl * add example for lvgl * adding const * support core-widget for lvgl * add lvgl package
14 lines
364 B
Python
14 lines
364 B
Python
import pika_lvgl as lv
|
|
import PikaStdLib
|
|
mem = PikaStdLib.MemChecker()
|
|
|
|
# Create a normal drop down list
|
|
dd = lv.dropdown(lv.scr_act())
|
|
dd.set_options("Apple\nBanana\nOrange\nCherry\nGrape\
|
|
Raspberry\nMelon\nOrange\nLemon\nNuts")
|
|
|
|
dd.align(lv.ALIGN.TOP_MID, 0, 20)
|
|
|
|
print('mem used max: %0.2f kB' % (mem.getMax()))
|
|
print('mem used now: %0.2f kB' % (mem.getNow()))
|