flutter_table_plus 2.0.2 copy "flutter_table_plus: ^2.0.2" to clipboard
flutter_table_plus: ^2.0.2 copied to clipboard

A highly customizable and efficient table widget for Flutter, featuring synchronized scrolling, theming, sorting, selection, column reordering, hover buttons, and expandable rows.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'pages/playground/playground_page.dart';

void main() {
  runApp(const MyApp());
}

class MyApp extends StatelessWidget {
  const MyApp({super.key});

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'FlutterTablePlus Playground',
      debugShowCheckedModeBanner: false,
      theme: ThemeData(
        primarySwatch: Colors.blue,
        useMaterial3: true,
      ),
      home: const PlaygroundPage(),
    );
  }
}
6
likes
160
points
834
downloads

Publisher

unverified uploader

Weekly Downloads

A highly customizable and efficient table widget for Flutter, featuring synchronized scrolling, theming, sorting, selection, column reordering, hover buttons, and expandable rows.

Repository (GitHub)
View/report issues

Topics

#table #datatable #data-table #grid #datagrid

Documentation

API reference

License

MIT (license)

Dependencies

flutter

More

Packages that depend on flutter_table_plus