editable 1.1.3 editable: ^1.1.3 copied to clipboard
⚡️A highly customizable, editable data table (spreadsheet) package for Flutter projects.
import 'package:editable/editable.dart';
import 'package:flutter/material.dart';
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Editable example',
theme: ThemeData(
primarySwatch: Colors.blue,
primaryColor: Colors.blue,
accentColor: Colors.white,
visualDensity: VisualDensity.adaptivePlatformDensity,
),
home: MyHomePage(title: 'Editable example'),
);
}
}
class MyHomePage extends StatefulWidget {
MyHomePage({Key key, this.title}) : super(key: key);
final String title;
@override
_MyHomePageState createState() => _MyHomePageState();
}
class _MyHomePageState extends State<MyHomePage> {
/// Create a Key for EditableState
final _editableKey = GlobalKey<EditableState>();
List rows = [
{
"name": 'James Joe',
"date": '23/09/2020',
"month": 'June',
"status": 'completed'
},
{
"name": 'Daniel Paul',
"month": 'March',
"status": 'new',
"date": '12/4/2020',
},
{
"month": 'May',
"name": 'Mark Zuckerberg',
"date": '09/4/1993',
"status": 'expert'
},
{
"name": 'Jack',
"status": 'legend',
"date": '01/7/1820',
"month": 'December',
},
];
List cols = [
{"title": 'Name', 'widthFactor': 0.2, 'key': 'name'},
{"title": 'Date', 'widthFactor': 0.2, 'key': 'date'},
{"title": 'Month', 'widthFactor': 0.2, 'key': 'month'},
{"title": 'Status', 'key': 'status'},
];
/// Function to add a new row
/// Using the global key assigined to Editable widget
/// Access the current state of Editable
void _addNewRow() {
setState(() {
_editableKey.currentState.createRow();
});
}
///Print only edited rows.
void _printEditedRows() {
List editedRows = _editableKey.currentState.editedRows;
print(editedRows);
}
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
leadingWidth: 200,
leading: FlatButton.icon(
onPressed: () => _addNewRow(),
icon: Icon(Icons.add),
label: Text(
'Add',
style: TextStyle(fontWeight: FontWeight.bold),
)),
title: Text(widget.title),
actions: [
Padding(
padding: const EdgeInsets.all(8.0),
child: FlatButton(
onPressed: () => _printEditedRows(),
child: Text('Print Edited Rows',
style: TextStyle(fontWeight: FontWeight.bold))),
)
],
),
body: Editable(
key: _editableKey,
columns: cols,
rows: rows,
zebraStripe: true,
stripeColor2: Colors.grey[200],
onRowSaved: (value) {
print(value);
},
onSubmitted: (value) {
print(value);
},
borderColor: Colors.blueGrey,
showSaveIcon: true,
saveIconColor: Colors.black,
showCreateButton: true,
),
);
}
}