PlutoGrid has default shortcut keys set, and users can change or set shortcut keys. Shortcut Range The scope of the shortcut depends on the focus. PlutoGrid : In the state that TextField is not focused. You can set custom shortcut keys. TextField :...
This is a function to call rows from the server side added in PlutoGrid 5.3 version. There are two ways to load and process data on the server side. The pagination method used in the DB structure where the total number of pages is known and the infin...
After setting columns and rows in the constructor of PlutoGrid, how to add columns and rows during runtime and precautions are described. Setting up columns and rows when creating a grid PlutoGrid can set columns and rows in the constructor when crea...
When creating a PlutoGrid, you can change the grid settings by passing PlutoGridConfiguration to the configuration property. child: PlutoGrid( columns: columns, rows: rows, configuration: const PlutoGridConfiguration(), ), enableMoveDownAfterS...
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 empty list. final List<PlutoRow> rows = [ PlutoRow( cells: { 'id': PlutoCell(value: 'use...
Default properties of columns Columns must be passed to the columns property, which is a List<PlutoColumn> type when creating a PlutoGrid. final List<PlutoColumn> columns = [ PlutoColumn( title: 'Id', field: 'id', type: PlutoColumnType....
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 the example code below. import 'package:flutter/material.dart'; import 'package:pluto_grid/pluto_gr...
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 Github. https://www.youtube.com/watch?v=7lZGowuhd94 Features Freeze the column left and right Drag the...
PlutoGrid Live Demo A link to a live demo where you can see PlutoGrid in action on the web.