show next up video

This commit is contained in:
Trey t
2024-06-13 19:07:33 -05:00
parent 619cee69f2
commit 460bd16347
5 changed files with 43 additions and 11 deletions

View File

@@ -14,7 +14,7 @@ struct AccountView: View {
@State var showCompletedWorkouts: Bool = false
@AppStorage(Constants.phoneThotStyle) private var phoneThotStyle: ThotStyle = .never
@AppStorage(Constants.extThotStyle) private var extThotStyle: ThotStyle = .never
@AppStorage(Constants.extShowBothVideos) private var extShowBothVideos: Bool = false
@AppStorage(Constants.extShowNextVideo) private var extShowNextVideo: Bool = false
@AppStorage(Constants.thotGenderOption) private var thotGenderOption: String = "female"
var body: some View {
@@ -105,8 +105,8 @@ struct AccountView: View {
Group {
Divider()
Toggle(isOn: $extShowBothVideos, label: {
Text("Show both videos on external")
Toggle(isOn: $extShowNextVideo, label: {
Text("Show next up video")
})
}