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

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

example/lib/main.dart

import 'package:flutter/material.dart';

import 'headerless_table.dart';
import 'simple_table.dart';

void main() {
  runApp(MaterialApp(
    title: 'Example',
    home: MyApp(),
  ));
}

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(title: Text("Examples")),
      body: Center(
        child: Column(
          children: <Widget>[
            ElevatedButton(
              child: Text("Simple table"),
              onPressed: () => Navigator.push(context,
                  MaterialPageRoute(builder: (context) => SimpleTable())),
            ),
            ElevatedButton(
              child: Text("Header-less table"),
              onPressed: () => Navigator.push(context,
                  MaterialPageRoute(builder: (context) => HeaderlessTable())),
            ),
          ],
        ),
      ),
    );
  }
}
9
likes
150
points
48
downloads

Publisher

verified publishereduardom.dev

Weekly Downloads

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

Repository (GitHub)

Documentation

API reference

License

BSD-2-Clause (license)

Dependencies

flutter

More

Packages that depend on lazy_data_table_plus