This commit is contained in:
Trey t
2024-06-16 18:37:34 -05:00
parent 0ac3835a9f
commit 8b613f0eaf
7 changed files with 270 additions and 149 deletions

View File

@@ -0,0 +1,22 @@
//
// ShowNextUpView.swift
// Werkout_ios
//
// Created by Trey Tartt on 6/16/24.
//
import SwiftUI
struct ShowNextUpView: View {
@AppStorage(Constants.extShowNextVideo) private var extShowNextVideo: Bool = false
var body: some View {
Toggle(isOn: $extShowNextVideo, label: {
Text("Show next up video")
})
}
}
#Preview {
ShowNextUpView()
}