CupertinoSegmentedControl<T extends Object> constructor

CupertinoSegmentedControl<T extends Object>(
  1. {Key? key,
  2. required Map<T, Widget> children,
  3. required ValueChanged<T> onValueChanged,
  4. T? groupValue,
  5. Color? unselectedColor,
  6. Color? selectedColor,
  7. Color? borderColor,
  8. Color? pressedColor,
  9. EdgeInsetsGeometry? padding}
)

Creates an iOS-style segmented control bar.

The children argument must be an ordered Map such as a LinkedHashMap. Further, the length of the children list must be greater than one.

Each widget value in the map of children must have an associated key that uniquely identifies this widget. This key is what will be returned in the onValueChanged callback when a new value from the children map is selected.

The groupValue is the currently selected value for the segmented control. If no groupValue is provided, or the groupValue is null, no widget will appear as selected. The groupValue must be either null or one of the keys in the children map.

Implementation

CupertinoSegmentedControl({
  super.key,
  required this.children,
  required this.onValueChanged,
  this.groupValue,
  this.unselectedColor,
  this.selectedColor,
  this.borderColor,
  this.pressedColor,
  this.padding,
}) : assert(children.length >= 2),
     assert(
       groupValue == null || children.keys.any((T child) => child == groupValue),
       'The groupValue must be either null or one of the keys in the children map.',
     );