You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currenlty Flutter Quill does not have any support for rendering Tables. Apparently Flutter provides basic support for the tables via the Table widget.
Short description from Flutter docs
Rows size vertically based on their contents. To control the individual column widths, use the columnWidths property to specify a TableColumnWidth for each column. If columnWidths is null, or there is a null entry for a given column in columnWidths, the table uses the defaultColumnWidth instead. By default, defaultColumnWidth is a FlexColumnWidth. This TableColumnWidth divides up the remaining space in the horizontal axis to determine the column width. If wrapping a Table in a horizontal ScrollView, choose a different TableColumnWidth, such as FixedColumnWidth.
I haven't searched on pub dev to see what tables libs we have hanging around. Ideally our tables should be smarter than just rendering a layout (sorting, filtering maybe, similar to DataTable in js). I'm open to ideas an requirements before committing to an implementation.
Join us on discord to get implementation advice and help or follow us on YouTube Visual Coding to learn more about the architecture of Visual Editor and other Flutter software architecture advice.
The text was updated successfully, but these errors were encountered:
Currenlty Flutter Quill does not have any support for rendering Tables. Apparently Flutter provides basic support for the tables via the Table widget.
Short description from Flutter docs
Rows size vertically based on their contents. To control the individual column widths, use the
columnWidths
property to specify aTableColumnWidth
for each column. IfcolumnWidths
is null, or there is a null entry for a given column incolumnWidths
, the table uses thedefaultColumnWidth
instead. By default,defaultColumnWidth
is aFlexColumnWidth
. ThisTableColumnWidth
divides up the remaining space in the horizontal axis to determine the column width. If wrapping aTable
in a horizontalScrollView
, choose a differentTableColumnWidth
, such asFixedColumnWidth
.I haven't searched on pub dev to see what tables libs we have hanging around. Ideally our tables should be smarter than just rendering a layout (sorting, filtering maybe, similar to DataTable in js). I'm open to ideas an requirements before committing to an implementation.
Join us on discord to get implementation advice and help or follow us on YouTube Visual Coding to learn more about the architecture of Visual Editor and other Flutter software architecture advice.
The text was updated successfully, but these errors were encountered: