GroupTagPanelWidget constructor

const GroupTagPanelWidget({
  1. Key? key,
  2. String? groupTitle,
  3. TextStyle? groupTitleStyle,
  4. Color? groupTitleColor,
  5. List items = const [],
  6. EdgeInsets? groupTitlePadding,
  7. EdgeInsets? panelPadding,
  8. double tagWidth = 100,
  9. Color tagColor = const Color(0xff939baf),
  10. Color valueColor = const Color(0xff5d6478),
  11. Color panelColor = Colors.white,
  12. TextAlign textAlign = TextAlign.left,
  13. double fontSize = 16,
  14. Color? titlePrefixColor,
  15. Widget? rightTitle,
})

Implementation

const GroupTagPanelWidget({
  Key? key,
  this.groupTitle,
  this.groupTitleStyle,
  this.groupTitleColor,
  this.items = const [],
  this.groupTitlePadding,
  this.panelPadding,
  this.tagWidth = 100,
  this.tagColor = const Color(0xff939baf),
  this.valueColor = const Color(0xff5d6478),
  this.panelColor = Colors.white,
  this.textAlign = TextAlign.left,
  this.fontSize = 16,
  this.titlePrefixColor,
  this.rightTitle,
}) : super(key: key);