struct ContentView: View {
   @State private var setActive: Bool = false
   @State private var setShowPictures: Bool = false
   @State private var setTotal: Int = 10

   var body: some View {
      Form {
         Toggle("Active", isOn: $setActive)
         Toggle("Show Pictures", isOn: $setShowPictures)
         LabeledContent("Total") {
            HStack {
               Text(String(setTotal))
               Stepper("", value: $setTotal, in: 0...10)
                  .labelsHidden()
            }
         }
      }
   }
}