ToggleStyleModifier.swift 353 B

12345678910
  1. extension View {
  2. /// Sets the style of toggles contained within this view.
  3. ///
  4. /// - Parameter toggleStyle: The new toggle style.
  5. public func toggleStyle(_ toggleStyle: ToggleStyle) -> some View {
  6. return EnvironmentModifier(self) { environment in
  7. return environment.with(\.toggleStyle, toggleStyle)
  8. }
  9. }
  10. }