flutty_tables 0.1.0 copy "flutty_tables: ^0.1.0" to clipboard
flutty_tables: ^0.1.0 copied to clipboard

Advanced table components for Flutter with sorting, filtering and pagination.

flutty_tables #

pub package pub points likes

Advanced table components for Flutter with sorting, filtering and pagination.

Installation #

dependencies:
  flutty_tables: ^0.1.0

Usage #

import 'package:flutty_tables/flutty_tables.dart';

FluttyTable<User>(
  columns: [
    FluttyColumn(
      title: 'Name',
      cellBuilder: (user) => Text(user.name),
    ),
  ],
  rows: users,
);

API Documentation #

See the API docs for full documentation.

2
likes
160
points
92
downloads

Documentation

API reference

Publisher

unverified uploader

Weekly Downloads

Advanced table components for Flutter with sorting, filtering and pagination.

Repository (GitHub)
View/report issues

License

MIT (license)

Dependencies

flutter, flutty_ds

More

Packages that depend on flutty_tables