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

outdated

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 'grids/grid-multiheader.dart';
//import 'grids/grid-columnheadersonly.dart';
//import 'grids/grid-rowheadersonly.dart';

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

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

Publisher

unverified uploader

Weekly Downloads

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

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter

More

Packages that depend on editablegrid