flutty_tables 0.1.1 copy "flutty_tables: ^0.1.1" to clipboard
flutty_tables: ^0.1.1 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.1

Usage #

Quick start #

import 'package:flutty_tables/flutty_tables.dart';

StaticRowTable(
  title: 'User info',
  elements: [
    StaticRowTableElement(
      rowBuilder: () => const Row(
        children: [
          Expanded(child: Text('Name')),
          Text('Alice'),
        ],
      ),
    ),
    StaticRowTableElement(
      rowBuilder: () => const Row(
        children: [
          Expanded(child: Text('Email')),
          Text('alice@example.com'),
        ],
      ),
    ),
  ],
);

ExpandableRowTable(
  title: 'Orders',
  elements: [
    ExpandedRowTableElement(
      id: 'order-1',
      rowBuilder: () => const Text('Order #1'),
      expendedBuilder: () => const [Text('Details')],
    ),
  ],
);

Example #

See packages/flutty_tables/example for a small demo app.

API Documentation #

See the API docs for full documentation.

2
likes
150
points
108
downloads

Documentation

API reference

Publisher

unverified uploader

Weekly Downloads

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

Repository (GitHub)
View/report issues

Topics

#tables #data-table #widget #flutter

License

MIT (license)

Dependencies

flutter, flutty_ds

More

Packages that depend on flutty_tables