ExpandedCollapseRightWidget constructor
const
ExpandedCollapseRightWidget({
- Key? key,
- String? collapsedHint,
- String? expandedHint,
- EdgeInsets? arrowPadding,
- Color? arrowColor,
- double arrowSize = 30,
- IconData? icon,
- TextStyle? hintTextStyle,
- ExpandArrowStyle expandArrowStyle = ExpandArrowStyle.icon,
- bool capitalArrowtext = true,
- bool expand = false,
- Duration animationDuration = _kExpand,
- required Widget child,
- required Widget header,
- String? expandImage,
- String? collapseImage,
- double paddingBtnHeader = 0,
- bool hideArrowOnExpanded = false,
Implementation
const ExpandedCollapseRightWidget({
Key? key,
this.collapsedHint,
this.expandedHint,
this.arrowPadding,
this.arrowColor,
this.arrowSize = 30,
this.icon,
this.hintTextStyle,
this.expandArrowStyle = ExpandArrowStyle.icon,
this.capitalArrowtext = true,
this.expand = false,
this.animationDuration = _kExpand,
required this.child,
required this.header,
this.expandImage,
this.collapseImage,
this.paddingBtnHeader = 0,
this.hideArrowOnExpanded = false,
}) : assert(hideArrowOnExpanded != null),
super(key: key);