SpinnerHeaderTheme constructor

const SpinnerHeaderTheme({
  1. double height = kMinInteractiveDimensionCupertino,
  2. TextStyle style = const TextStyle(color: Color(0xff20263A), fontSize: 14),
  3. TextStyle selectedStyle = const TextStyle(color: Color(0xffE72410), fontSize: 14),
  4. bool selectedMark = true,
  5. bool isShowBorder = true,
  6. Color bgColor = Colors.white,
  7. Color arrowColor = const Color(0xff9B9EAC),
  8. EdgeInsets padding = EdgeInsets.zero,
  9. bool outsideFocus = false,
  10. double iconSize = 25,
  11. EdgeInsets iconPading = const EdgeInsets.symmetric(horizontal: 4),
  12. TextDirection? textDirection,
  13. bool isIconAnimate = true,
})

Implementation

const SpinnerHeaderTheme({
  this.height = kMinInteractiveDimensionCupertino,
  this.style = const TextStyle(
    color: Color(0xff20263A),
    fontSize: 14,
  ),
  this.selectedStyle = const TextStyle(
    color: Color(0xffE72410),
    fontSize: 14,
  ),
  this.selectedMark = true,
  this.isShowBorder = true,
  this.bgColor = Colors.white,
  this.arrowColor = const Color(0xff9B9EAC),
  this.padding = EdgeInsets.zero,
  this.outsideFocus = false,
  this.iconSize = 25,
  this.iconPading = const EdgeInsets.symmetric(horizontal: 4),
  this.textDirection,
  this.isIconAnimate = true,
});