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.

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>[
            RaisedButton(
              child: Text("Simple table"),
              onPressed: () => Navigator.push(context,
                  MaterialPageRoute(builder: (context) => SimpleTable())),
            ),
            RaisedButton(
              child: Text("Header-less table"),
              onPressed: () => Navigator.push(context,
                  MaterialPageRoute(builder: (context) => HeaderlessTable())),
            ),
          ],
        ),
      ),
    );
  }
}
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