Containers.swift 615 B

123456789101112131415161718
  1. extension BackendFeatures {
  2. /// Backend methods for widget containers.
  3. ///
  4. /// These protocols let apps implement views that wrap widgets within
  5. /// other widgets, such as scroll views or split views.
  6. ///
  7. /// The "generic" container is implemented separately from this;
  8. /// see ``GenericContainers`` for more details on that protocol.
  9. ///
  10. /// ## Topics
  11. ///
  12. /// ### Constituent Protocols
  13. /// - ``ScrollContainers``
  14. /// - ``SelectableListView``
  15. /// - ``SplitView``
  16. public typealias Containers =
  17. ScrollContainers & SelectableListViews & SplitViews
  18. }