Segmented Buttons
Represents a Material UI styled segmented control for switching between options.
Overview
The SegmentedButton
provides a segmented control with Material UI styling, allowing users to switch between different options.
To use SegmentedButton
, initialize it with a collection of data, a key path to identify each element, a binding to the currently selected element, and a closure to define the content for each segment.
Initializer
Creates a segmented control with the given data, identifier, and content.
Parameters
data
A collection of elements to display in the segmented control.
id
A key path to an ID
property on each element to uniquely identify them.
selection
A binding to the currently selected element in the segmented control.
content
A closure that returns the content view for a given element.
Example
SegmentedButton
is compatible with custom data models that conform toHashable
andIdentifiable
protocols.
Last updated