godilite / editable

This library allows you to create editable tables and spreadsheets with ease, either by providing initial row and column count to display an empty table or use it with predefined rows and column data sets.
MIT License
104 stars 36 forks source link

Be able to set Widgets in the Cols #45

Closed corusm closed 3 years ago

corusm commented 3 years ago

Make it possible to set Widgets in the Cols

List cols = [
    {
      "title": Text("Name"),
      'widthFactor': 0.3,
      'key': 'name',
      'editable': true
    },];