How to remove or hide the label of a Toggle in SwiftUI
You can hide label with the .labelsHidden() modifier:
Toggle(isOn: $switchValue) {}
.labelsHidden()
SwiftUI 1.0
Hide the label/title with the labelsHidden Modifier
This is how it should be done.
Toggle("Turn alarm on", isOn: $isToggleOn)
.labelsHidden() // Hides the label/title
Note: Even though the label is hidden, you should still add one for accessibility purposes.