Visibility.swift 264 B

123456789
  1. /// The visibility of a component.
  2. public enum Visibility: Sendable {
  3. /// The component is automatically hidden or shown based on context.
  4. case automatic
  5. /// The component is hidden.
  6. case hidden
  7. /// The component is visible.
  8. case visible
  9. }