mirror of
https://gitee.com/Lyon1998/pikapython.git
synced 2025-01-22 17:12:55 +08:00
19 lines
240 B
Python
19 lines
240 B
Python
|
import PikaUI_core as core
|
||
|
# import pika_lvgl
|
||
|
|
||
|
# core.set_backend(pika_lvgl)
|
||
|
|
||
|
class Widget(core.Widget):
|
||
|
pass
|
||
|
|
||
|
def Page():
|
||
|
return core.Page()
|
||
|
|
||
|
class Button(core.Button):
|
||
|
pass
|
||
|
|
||
|
class Text(core.Text):
|
||
|
pass
|
||
|
|
||
|
ALIGN = core.ALIGN
|