data_table_plus 0.0.2 copy "data_table_plus: ^0.0.2" to clipboard
data_table_plus: ^0.0.2 copied to clipboard

A table library following the standard Flutter structure with some increments

example/lib/main.dart

import 'package:flutter/material.dart';

import 'data_table_plus.dart';

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

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      restorationScopeId: 'main',
      title: 'Flutter Demo',
      theme: ThemeData(
        primaryColor: Colors.grey[300],
      ),
      initialRoute: '/DataTablePlus',
      routes: {
        '/DataTablePlus': (context) => DataTablePlusDemo(),
      },
    );
  }
}
3
likes
150
points
167
downloads

Publisher

unverified uploader

Weekly Downloads

A table library following the standard Flutter structure with some increments

Repository (GitHub)

Documentation

API reference

License

BSD-3-Clause (license)

Dependencies

flutter

More

Packages that depend on data_table_plus