-
Suppose I have a list, where each element is itself a list of some fixed length n. For example g = [['a', 'b'], ['c', 'd'], ['e', 'f'], ['g', 'h']] I'd like to create a GridView that would be a 4x2 grid, regardless of how the screen is sized. If the screen is too narrow, we'd have a horizontal scroll bar, and if too wide, we'd just have some white space on the right. I tried to do it by creating a gridview and appending multiple Containers, one for each row, but it didn't work. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
It seems this will be addressed by the DataTable control when it is released. |
Beta Was this translation helpful? Give feedback.
It seems this will be addressed by the DataTable control when it is released.