CupertinoPickerDefaultSelectionOverlay constructor
Creates an iOS 14 style selection overlay that highlights the magnified area (or the currently selected item, depending on how you described it elsewhere) of a CupertinoPicker.
The background argument default value is CupertinoColors.tertiarySystemFill.
The capStartEdge and capEndEdge arguments decide whether to add a default margin and use rounded corners on the left and right side of the rectangular overlay, and they both default to true.
Implementation
const CupertinoPickerDefaultSelectionOverlay({
super.key,
this.background = CupertinoColors.tertiarySystemFill,
this.capStartEdge = true,
this.capEndEdge = true,
});