TagPanelWidget constructor

const TagPanelWidget(
  1. List items, {
  2. Key? key,
  3. double tagWidth = 80,
  4. double itemHeight = 15,
  5. Color panelColor = Colors.transparent,
  6. EdgeInsetsGeometry padding = const EdgeInsets.all(5),
  7. Axis axis = Axis.horizontal,
  8. Color tagColor = const Color(0xff939baf),
  9. Color valueColor = const Color(0xff5d6478),
  10. TextAlign textAlign = TextAlign.left,
  11. double fontSize = 16,
})

Implementation

const TagPanelWidget(
  this.items, {
  Key? key,
  this.tagWidth = 80,
  this.itemHeight = 15,
  this.panelColor = Colors.transparent,
  this.padding = const EdgeInsets.all(5),
  this.axis = Axis.horizontal,
  this.tagColor = const Color(0xff939baf),
  this.valueColor = const Color(0xff5d6478),
  this.textAlign = TextAlign.left,
  this.fontSize = 16,
}) : super(key: key);