lazy_data_table_plus 0.1.6 copy "lazy_data_table_plus: ^0.1.6" to clipboard
lazy_data_table_plus: ^0.1.6 copied to clipboard

outdated

A Flutter data table with (optional) sticky row and/or column headers that loads the contents lazily.

lazy_data_table_plus #

A Flutter widget data table that can be loaded lazily. The table also has a column header row and a row header column that will stay in view. (This widget is still in development, and may not work 100%)

This widget is based on table-sticky-headers made by Alex Bacich, so credits to him.

Features #

  • Scrollable when items overflow
  • Column header row stays in view
  • Row header column stays in view
  • Items are loaded lazily

img not loaded

Usage #

To use this widget, add lazy_data_table_plus: ^0.1.5 to your dependencies in pubspec.yaml

dependencies:
  lazy_data_table_plus: ^0.1.5

Then the package can be included in a file with:

import 'package:lazy_data_table_plus/lazy_data_table_plus.dart';

And then the LazyDataTable can be used as following:
(This example is used to create the table in the gif above)

LazyDataTable(
  rows: 100,
  columns: 100,
  tableDimensions: DataTableDimensions(
    cellHeight: 50,
    cellWidth: 100,
    columnHeaderHeight: 50,
    rowHeaderWidth: 75,
  ),
  tableTheme: DataTableTheme(
    columnHeaderBorder: Border.all(color: Colors.black38),
    rowHeaderBorder: Border.all(color: Colors.black38),
    cellBorder: Border.all(color: Colors.black12),
    cornerBorder: Border.all(color: Colors.black38),
    columnHeaderColor: Colors.white60,
    rowHeaderColor: Colors.white60,
    cellColor: Colors.white,
    cornerColor: Colors.white38,
  ),
  columnHeaderBuilder: (i) => Center(child: Text("Column: ${i + 1}")),
  rowHeaderBuilder: (i) => Center(child: Text("Row: ${i + 1}")),
  dataCellBuilder: (i, j) => Center(child: Text("Cell: $i, $j")),
  cornerWidget: Center(child: Text("Corner")),
),

Issues #

If you have any problems or even suggestions feel free leave them here

9
likes
0
pub points
62%
popularity

Publisher

verified publishereduardom.dev

A Flutter data table with (optional) sticky row and/or column headers that loads the contents lazily.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on lazy_data_table_plus