RowOverflowCountComputationWidget constructor
const
RowOverflowCountComputationWidget({
- Key? key,
- required double width,
- required List<
String> labels, - required TextStyle labelTextStyle,
- EdgeInsets? labelPadding,
- EdgeInsets? labelMargin,
- BoxDecoration? labelDecoration,
- required TextStyle overflowTextStyle,
- EdgeInsets? overflowPadding,
- EdgeInsets? overflowMargin,
- BoxDecoration? overflowDecoration,
- String overflowTextBuilder(
- int count
- dynamic labelClickListener()?,
- dynamic overflowClickListener()?,
Implementation
const RowOverflowCountComputationWidget({
Key? key,
required this.width,
required this.labels,
required this.labelTextStyle,
this.labelPadding,
this.labelMargin,
this.labelDecoration,
required this.overflowTextStyle,
this.overflowPadding,
this.overflowMargin,
this.overflowDecoration,
this.overflowTextBuilder,
this.labelClickListener,
this.overflowClickListener,
}) : super(key: key);