Articles in this series
PlutoGrid is a Flutter package and is a data grid used on all platforms supported by Flutter.It is also open source and the source code is open to...
Search for pluto_grid in pub.dev and add the package to your project.pub.dev to install pluto_grid And add PlutoGrid to your screen by referring to...
Default properties of columns Columns must be passed to the columns property, which is a List<PlutoColumn> type when creating a PlutoGrid. final...
Default properties of rows Rows should be passed as a List<PlutoRow> type to the rows property when creating a PlutoGrid. It can also be passed as an...
When creating a PlutoGrid, you can change the grid settings by passing PlutoGridConfiguration to the configuration property. child: PlutoGrid( ...
After setting columns and rows in the constructor of PlutoGrid, how to add columns and rows during runtime and precautions are described. Setting up...