BackendPickerStyle.swift 490 B

123456789101112
  1. /// Picker styles backed by backend widgets. This is passed to backends when
  2. /// rendering native picker widgets.
  3. public enum BackendPickerStyle: Hashable, Sendable, BitwiseCopyable {
  4. /// The style corresponding to ``MenuPickerStyle``.
  5. case menu
  6. /// The style corresponding to ``RadioGroupPickerStyle``.
  7. case radioGroup
  8. /// The style corresponding to ``SegmentedPickerStyle``.
  9. case segmented
  10. /// The style corresponding to ``WheelPickerStyle``.
  11. case wheel
  12. }