HandyTableView constructor
const
HandyTableView({
- Key? key,
- TableViewStyle style = TableViewStyle.plain,
- int numberOfSections = 1,
- required SectionBuilder numberOfRowsInSection,
- required IndexPathWidgetBuilder cellForRowBuilder,
- WidgetBuilder? tableViewHeaderBuilder,
- IndexedWidgetBuilder? sectionHeaderBuilder,
- ListViewSuperWidgetBuilder? refreshWidget,
- ScrollController? controller,
- Color? backgroundColor,
Implementation
const HandyTableView({Key? key,
this.style = TableViewStyle.plain,
this.numberOfSections = 1,
required this.numberOfRowsInSection,
required this.cellForRowBuilder,
this.tableViewHeaderBuilder,
this.tableViewFooterBuilder,
this.sectionHeaderBuilder,
this.sectionFooterBuilder,
this.refreshWidget,
this.controller,
this.backgroundColor,
}) : super(key: key);