1
0
mirror of https://github.com/lvgl/lvgl.git synced 2025-01-28 07:03:00 +08:00
lvgl/demos/flex_layout/lv_demo_flex_layout_main.c
_VIFEXTech afe29b7dab
refact(user_data): remove LV_USE_USER_DATA configuration (#4056)
Signed-off-by: pengyiqiang <pengyiqiang@xiaomi.com>
Co-authored-by: pengyiqiang <pengyiqiang@xiaomi.com>
2023-03-14 14:34:56 +01:00

52 lines
830 B
C

/**
* @file lv_demo_flex_layout_main.c
*
*/
/*********************
* INCLUDES
*********************/
#include "lv_demo_flex_layout_main.h"
#include "lv_demo_flex_layout.h"
#if LV_USE_DEMO_FLEX_LAYOUT
/*********************
* DEFINES
*********************/
/**********************
* TYPEDEFS
**********************/
/**********************
* STATIC PROTOTYPES
**********************/
/**********************
* STATIC VARIABLES
**********************/
static view_t view;
/**********************
* MACROS
**********************/
/**********************
* GLOBAL FUNCTIONS
**********************/
void lv_demo_flex_layout(void)
{
view_create(lv_scr_act(), &view);
ctrl_pad_attach(&view);
}
/**********************
* STATIC FUNCTIONS
**********************/
#endif