flutter_html_table 3.0.0-beta.1 flutter_html_table: ^3.0.0-beta.1 copied to clipboard
This extension package allows the <table> tag to be rendered using the flutter_html package
flutter_html_table #
Table widget for flutter_html.
This package renders table elements using the flutter_layout_grid
plugin.
When rendering table elements, the package tries to calculate the best fit for each element and size its cell accordingly. Rowspan
s and colspan
s are considered in this process, so cells that span across multiple rows and columns are rendered as expected. Heights are determined intrinsically to maintain an optimal aspect ratio for the cell.
Registering the CustomRender
:
Widget html = Html(
customRenders: {
tableMatcher(): tableRender(),
}
);