I want to make the state of toggle switch to ON always, even if user tries to make it OFF, it should not change. I tried to use .isUserInterstionEnabled = .false, but that didn't work. Can somebody help me on this? Thank you in advance
How to make toggle switch always ON in swift?
1.1k Views Asked by Meri At
3
There are 3 best solutions below
1

There are two ways that I see you can achieve what you want.
- Disable it, using the modifier
.disabled()
(the user will see it slightly faded):
struct Example: View {
@State private var isOn = true
var body: some View {
VStack {
Toggle("Text of toggle", isOn: $isOn)
.disabled(true)
}
}
}
- Force it to go back to on, using the modifier
.onChange(of:)
:
struct Example: View {
@State private var isOn = true
var body: some View {
VStack {
Toggle("Text of toggle", isOn: $isOn)
}
.onChange(of: isOn) { _ in
isOn = true
}
}
}
Try using
toggle.isEnabled = false