From da0c97a367746573fa2385d0ddd184f27ca20dbd Mon Sep 17 00:00:00 2001 From: embeddedt <42941056+embeddedt@users.noreply.github.com> Date: Fri, 27 Aug 2021 11:09:43 -0400 Subject: [PATCH] docs(grid) fix missing article --- docs/layouts/grid.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/layouts/grid.md b/docs/layouts/grid.md index d2272f67bb..3806f65abe 100644 --- a/docs/layouts/grid.md +++ b/docs/layouts/grid.md @@ -9,7 +9,7 @@ The Grid layout is a subset of [CSS Flexbox](https://css-tricks.com/snippets/css/complete-guide-grid/). -It can arrange items into 2D "table" that has rows or columns (tracks). The item can span through multiple columns or rows. +It can arrange items into a 2D "table" that has rows or columns (tracks). The item can span through multiple columns or rows. The track's size can be set in pixel, to the largest item (`LV_GRID_CONTENT`) or in "Free unit" (FR) to distribute the free space proportionally. To make an object a grid container call `lv_obj_set_layout(obj, LV_LAYOUT_GRID)`.