FilterFeedbackBarButton

public struct FilterFeedbackBarButton
extension FilterFeedbackBarButton: View
extension FilterFeedbackBarButton: _ViewEmptyChecking

The FilterFeedbackBarButton is a SwiftUI component for item’s options that are used in FilterFeedbackBar when the item’s type is SortFilterItem.picker. Typically not used by application developer.

Usage

icon is the leading image in the button. title is the title for the option. isSelected is the state of the button whether it is selected. The style of the button will change based on its state.

 FilterFeedbackBarButton(
    icon: Image(systemName: "checkmark"),
    title: "Status",
    isSelected: true)