mirror of
https://github.com/lvgl/lvgl.git
synced 2024-11-23 09:43:41 +08:00
20 lines
628 B
C
20 lines
628 B
C
#include "../lv_examples.h"
|
|
#if LV_BUILD_EXAMPLES && LV_USE_LABEL
|
|
|
|
/**
|
|
* Basic example to create a "Hello world" label
|
|
*/
|
|
void lv_example_get_started_1(void)
|
|
{
|
|
/*Change the active screen's background color*/
|
|
lv_obj_set_style_bg_color(lv_screen_active(), lv_color_hex(0x003a57), LV_PART_MAIN);
|
|
|
|
/*Create a white label, set its text and align it to the center*/
|
|
lv_obj_t * label = lv_label_create(lv_screen_active());
|
|
lv_label_set_text(label, "Hello world");
|
|
lv_obj_set_style_text_color(lv_screen_active(), lv_color_hex(0xffffff), LV_PART_MAIN);
|
|
lv_obj_align(label, LV_ALIGN_CENTER, 0, 0);
|
|
}
|
|
|
|
#endif
|