manki kim
Pluto packages in Flutter

Pluto packages in Flutter

Follow
homePluto GridPluto Menu BarPluto LayoutLive DemoDonationbadgesnewsletter
Series

PlutoGrid

PlutoGrid is a data grid. It is a Flutter package that allows you to easily edit large amounts of data with the keyboard. It can be used on any platform supported by Flutter.

Articles in this series

Introduction to PlutoGrid.

Jul 11, 20221 min read

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...

Introduction to PlutoGrid.

Getting Started

Jul 11, 20222 min read

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...

Getting Started

Columns

Jul 11, 20226 min read

Default properties of columns Columns must be passed to the columns property, which is a List<PlutoColumn> type when creating a PlutoGrid. final...

Columns

Rows and Cells

Jul 12, 20222 min read

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...

Rows and Cells

Configuration

Jul 12, 20228 min read

When creating a PlutoGrid, you can change the grid settings by passing PlutoGridConfiguration to the configuration property. child: PlutoGrid( ...

Configuration

Add and remove columns and rows.

Jul 15, 20223 min read

After setting columns and rows in the constructor of PlutoGrid, how to add columns and rows during runtime and precautions are described. Setting up...

Add and remove columns and rows.