Last updated:
0 purchases
flutter html table
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. Rowspans and colspans 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(),
}
);
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.