Lines Matching refs:button
151 ); /*Add a button to the c…
158 lv_obj_center(button); /*Set its position*/
159 lv_obj_set_size(button, 100, 50); /*Set its size*/
160 lv_obj_add_event_cb(button, button_event_cb, LV_EVENT_CLICKED, NULL); /*Assign a callback to the bu…
162 lv_obj_t * label = lv_label_create(button); /*Add a label to the button*/
182 button = lv.button(lv.screen_active())
183 button.center()
184 button.set_size(100, 50)
185 button.add_event_cb(button_event_cb, lv.EVENT.CLICKED, None)
187 label = lv.label(button)