ChipGroupStyle.minimize constructor

const ChipGroupStyle.minimize({
  1. Color? backgroundColorItem = Colors.grey,
  2. Color? selectedColorItem = Colors.black,
  3. Color? textColor = Colors.black,
  4. Color? selectedTextColor = Colors.white,
  5. IconData? selectedIcon = Icons.done,
  6. Color? disabledColor = Colors.grey,
  7. OutlinedBorder? shape,
  8. OutlinedBorder? checkedShape,
  9. TextStyle? itemTitleStyle,
  10. bool isScrolling = false,
  11. ChipsDirection direction = ChipsDirection.wrap,
})

Implementation

const ChipGroupStyle.minimize({
  this.backgroundColorItem = Colors.grey,
  this.selectedColorItem = Colors.black,
  this.textColor = Colors.black,
  this.selectedTextColor = Colors.white,
  this.selectedIcon = Icons.done,
  this.disabledColor = Colors.grey,
  this.shape,
  this.checkedShape,
  TextStyle? itemTitleStyle,
  this.isScrolling = false,
  this.direction = ChipsDirection.wrap,
}) : super(
        activeColor: selectedColorItem,
        groupTitleStyle: null,
        itemTitleStyle: itemTitleStyle,
        subItemTitleStyle: null,
      );