chore(lv_conf_temaple.h): add comments to FLEX and GRID

This commit is contained in:
Gabor Kiss-Vamosi
2021-03-30 21:07:17 +02:00
parent a9f86c96b3
commit 66c1105ef6
2 changed files with 11 additions and 3 deletions

View File

@@ -477,13 +477,17 @@ typedef void * lv_user_data_t;
# define LV_THEME_DEFAULT_TRANSITON_TIME 80
#endif /*LV_USE_THEME_DEFAULT*/
/*An very simple them that is a good starting point for a custom theme*/
/*An very simple them that is a good starting point for a custom theme*/
#define LV_USE_THEME_BASIC 1
/*-----------
* Layouts
*----------*/
/*A layout similar to Flexbox in CSS.*/
#define LV_USE_FLEX 1
/*A layout similar to Grid in CSS.*/
#define LV_USE_GRID 1
/*==================