DbLensListView constructor
const
DbLensListView({
- Key? key,
- required List<
Map< rows,String, Object?> > - required List<
String> columns, - int rowNumberStart = 1,
- int previewColumnCount = 2,
- String searchQuery = '',
- bool canEditColumn(
- String column
- Future<
void> onEditCell()?, - Future<
bool> onSaveCell()?, - DbLensController? controller,
- bool? isSQLite,
- void onCopyRow()?,
- DbLensValueRenderer? valueRenderer,
- EdgeInsets padding = const EdgeInsets.all(12),
Implementation
const DbLensListView({
super.key,
required this.rows,
required this.columns,
this.rowNumberStart = 1,
this.previewColumnCount = 2,
this.searchQuery = '',
this.canEditColumn,
this.onEditCell,
this.onSaveCell,
this.controller,
this.isSQLite,
this.onCopyRow,
this.valueRenderer,
this.padding = const EdgeInsets.all(12),
});