ChipGroupStyle constructor

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

Implementation

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