editablegrid 1.0.0 copy "editablegrid: ^1.0.0" to clipboard
editablegrid: ^1.0.0 copied to clipboard

A library created to speed up and simplify the process of creating simple editable grids.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:editablegridsamples/utils/grids/grid_multiheaders.dart';
//import 'package:editablegridsamples/utils/grids/grid_columnheaders.dart';
//import 'package:editablegridsamples/utils/grids/grid_rowheaders.dart';

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

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) => MaterialApp(
        title: 'Editable Grid',
        theme: ThemeData(
          primarySwatch: Colors.blue,
        ),
        //Examples:
        //Multi-headers
        home: MultiHeadersGrid(),
        //Column headers only
        //home: ColumnHeadersGrid(),
        //Row headers only
        //home: RowHeadersGrid(),
      );
}
1
likes
120
pub points
0%
popularity

Publisher

unverified uploader

A library created to speed up and simplify the process of creating simple editable grids.

Repository (GitHub)
View/report issues

Documentation

API reference

License

BSD-3-Clause (LICENSE)

Dependencies

flutter

More

Packages that depend on editablegrid