Replies: 2 comments 4 replies
-
This is correct. The page you linked to specifies "... MinSize will define the standard size of each cell, and the minimum size of the table (it shows at least one cell)." You probably want |
Beta Was this translation helpful? Give feedback.
-
That's too bad. It sounds like Fyne is too slow to implement a useful table. There is no reason to have a table that shows massive amounts of data if it cannot be read by the user. The way I see it, this table can only be useful if the data in the rows and columns are predictable and the width and height of each row and column are known ahead of time. |
Beta Was this translation helpful? Give feedback.
-
I followed https://developer.fyne.io/widget/table, but it seems like the column widths are set by the
"wide content"
string, and if I add a cell value that is wider than that initial string, the column won't expand (instead the label text just runs over onto adjacent cells). I would expect that adding values to a column that are wider than the initial column width would cause the column to resize dynamically (or perhaps wrap). Similarly, I would expect to be able to have columns with different widths depending on the longest value in each column. Is this possible with the existing TableWidget?Here's a modified version of the widget/table example to illustrate:
Beta Was this translation helpful? Give feedback.
All reactions