1 #include "../../lv_examples.h"
2 #if LV_USE_GRID && LV_BUILD_EXAMPLES
3 
4 /**
5  * Demonstrate track placement
6  */
lv_example_grid_4(void)7 void lv_example_grid_4(void)
8 {
9     static lv_coord_t col_dsc[] = {60, 60, 60, LV_GRID_TEMPLATE_LAST};
10     static lv_coord_t row_dsc[] = {45, 45, 45, LV_GRID_TEMPLATE_LAST};
11 
12     /*Add space between the columns and move the rows to the bottom (end)*/
13 
14     /*Create a container with grid*/
15     lv_obj_t * cont = lv_obj_create(lv_scr_act());
16     lv_obj_set_grid_align(cont, LV_GRID_ALIGN_SPACE_BETWEEN, LV_GRID_ALIGN_END);
17     lv_obj_set_grid_dsc_array(cont, col_dsc, row_dsc);
18     lv_obj_set_size(cont, 300, 220);
19     lv_obj_center(cont);
20 
21     lv_obj_t * label;
22     lv_obj_t * obj;
23     uint32_t i;
24     for(i = 0; i < 9; i++) {
25         uint8_t col = i % 3;
26         uint8_t row = i / 3;
27 
28         obj = lv_obj_create(cont);
29         /*Stretch the cell horizontally and vertically too
30          *Set span to 1 to make the cell 1 column/row sized*/
31         lv_obj_set_grid_cell(obj, LV_GRID_ALIGN_STRETCH, col, 1,
32                              LV_GRID_ALIGN_STRETCH, row, 1);
33 
34         label = lv_label_create(obj);
35         lv_label_set_text_fmt(label, "%d,%d", col, row);
36         lv_obj_center(label);
37     }
38 }
39 
40 #endif
41