add all widgets and widget examples

This commit is contained in:
Gabor Kiss-Vamosi
2021-02-10 22:59:53 +01:00
parent 7bec13c2b9
commit e0fb0db735
47 changed files with 1625 additions and 922 deletions

View File

@@ -5,7 +5,7 @@ void lv_example_tabview_1(void)
{
/*Create a Tab view object*/
lv_obj_t *tabview;
tabview = lv_tabview_create(lv_scr_act(), LV_DIR_RIGHT, 50);
tabview = lv_tabview_create(lv_scr_act(), LV_DIR_TOP, 50);
/*Add 3 tabs (the tabs are page (lv_page) and can be scrolled*/
lv_obj_t *tab1 = lv_tabview_add_tab(tabview, "Tab 1");