dt_fl_table

Creator: coderz1093

Last updated:

0 purchases

dt_fl_table Image
dt_fl_table Images

Languages

Categories

Add to Cart

Description:

dt fl table

Flutter table widget: Highly customizable, performant, and easy to use.

We're actively developing this package. Expect detailed documentation and examples in the upcoming
releases.


Features #

Fix headers to the top
Fix columns to the left or right or both
Pagination support available

Getting started #
Installation #
Add the following line to pubspec.yaml
dependencies:
dt_fl_table:
copied to clipboard
Usage #
Check https://dt-fl-table.oss.dualtone.dev for more details.
Basic Setup #
Import the dependency.
import 'package:dt_fl_table/dt_fl_table.dart';

copied to clipboard
Snippet to render the table widget.
DTFLTable(
columns: [
DTFLTableColumn(
key: "id",
label: "Id",
fixed: DTTableColumnFixedPosition.leading),
DTFLTableColumn(key: "name", label: "Name"),
DTFLTableColumn(key: "email", label: "Email"),
DTFLTableColumn(key: "phone", label: "Phone"),
DTFLTableColumn(key: "col5", label: "Column 5"),
DTFLTableColumn(key: "col6", label: "Column 6")
],
rows: List.generate(150, (index) {
return DTFLTableRow(
id: "$index",
cells: [
DTFLTableCell(
key: "id",
cell: Text((index).toString()),
),
DTFLTableCell(
key: "name",
cell: Text("Full name $index"),
),
DTFLTableCell(
key: "email",
cell: Text("[email protected]"),
),
DTFLTableCell(
key: "phone",
cell: Text("+919999999${index + 1}"),
),
DTFLTableCell(
key: "col5",
cell: Text("Col5 ${index + 1}"),
),
DTFLTableCell(
key: "col6",
cell: Text("Col6 ${index + 1}"),
),
],
);
}).toList(),
)
copied to clipboard

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.