ChalonaGrid<T extends DataMap> constructor
ChalonaGrid<T extends DataMap> ({
- Key? key,
- required DataListMap<
T> source, - required List<
ChalonaGridHeader> headers, - required GridDetailFn<
T> detail, - dynamic onTapRow(
- T x
- double headerHeight = 50,
- double rowHeight = 50,
Implementation
ChalonaGrid({
super.key,
required this.source,
required this.headers,
required this.detail,
this.onTapRow,
this.headerHeight = 50,
this.rowHeight = 50,
});