This repository has been archived by the owner on May 2, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathContentView.swift
195 lines (165 loc) · 5.33 KB
/
ContentView.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
//
// ContentView.swift
// Teste
//
// Created by Anderson Sprenger on 21/04/22.
//
import SwiftUI
struct ContentView: View {
enum Tab {
case intro, caesarCipher, caesarExplanation, probabilityExplanation, vigeniereCipher,
vigeniereExplanation, permutationCipher, otpExplanation, permutationExplanation,
thankYou
func hideNavigationBar() -> Bool {
switch self {
case .caesarCipher:
return false
case .vigeniereCipher:
return false
case .permutationCipher:
return false
default:
return true
}
}
}
@State var tabSelection: Tab = .intro
let deviceType = UIDevice.current.userInterfaceIdiom
init() {
let pageControl = UIPageControl.appearance()
pageControl.pageIndicatorTintColor = UIColor(.accentColor).withAlphaComponent(0.4)
pageControl.currentPageIndicatorTintColor = UIColor(.accentColor)
}
var body: some View {
TabView(selection: $tabSelection) {
intro
.tag(Tab.intro)
caesarCipher
.tag(Tab.caesarCipher)
caesarExplanation
.tag(Tab.caesarExplanation)
probabilityExplanation
.tag(Tab.probabilityExplanation)
vigeniereCipher
.tag(Tab.vigeniereCipher)
vigeniereExplanation
.tag(Tab.vigeniereExplanation)
otpExplanation
.tag(Tab.otpExplanation)
permutationCipher
.tag(Tab.permutationCipher)
permutationExplanation
.tag(Tab.permutationExplanation)
thankYou
.tag(Tab.thankYou)
}
.tabViewStyle(.page)
.navigationBarHidden($tabSelection.wrappedValue.hideNavigationBar())
.navigationBarBackButtonHidden(true)
}
var intro: some View {
IntroView {
withAnimation {
tabSelection = .caesarCipher
}
}
.navigationBarHidden($tabSelection.wrappedValue.hideNavigationBar())
}
var caesarCipher: some View {
VStack {
CaesarView()
Button {
withAnimation {
tabSelection = .caesarExplanation
}
} label: {
Text("Next")
}
.buttonStyle(CoolButtonStyle())
.padding()
.padding(.bottom, deviceType == .phone ? 8 : 34)
}
.navigationBarHidden($tabSelection.wrappedValue.hideNavigationBar())
}
var caesarExplanation: some View {
CaesarExplanationView {
withAnimation {
tabSelection = .probabilityExplanation
}
}
.navigationBarHidden($tabSelection.wrappedValue.hideNavigationBar())
}
var probabilityExplanation: some View {
ProbabilityExplanationView {
withAnimation {
tabSelection = .vigeniereCipher
}
}
.navigationBarHidden($tabSelection.wrappedValue.hideNavigationBar())
}
var vigeniereCipher: some View {
VStack {
VigeniereView()
Button {
withAnimation {
tabSelection = .vigeniereExplanation
}
} label: {
Text("Next")
}
.buttonStyle(CoolButtonStyle())
.padding()
.padding(.bottom, deviceType == .phone ? 8 : 34)
}
.navigationBarHidden($tabSelection.wrappedValue.hideNavigationBar())
}
var vigeniereExplanation: some View {
VigeniereExplanationView {
withAnimation {
tabSelection = .otpExplanation
}
}
.navigationBarHidden($tabSelection.wrappedValue.hideNavigationBar())
}
var otpExplanation: some View {
OTPExplanation{
withAnimation {
tabSelection = .permutationCipher
}
}
.navigationBarHidden($tabSelection.wrappedValue.hideNavigationBar())
}
var permutationCipher: some View {
VStack {
ColumnTranspositionView()
Button {
withAnimation {
tabSelection = .permutationExplanation
}
} label: {
Text("Next")
}
.buttonStyle(CoolButtonStyle())
.padding()
.padding(.bottom, deviceType == .phone ? 8 : 34)
.navigationBarHidden($tabSelection.wrappedValue.hideNavigationBar())
}
}
var permutationExplanation: some View {
PermutationExplanationView {
withAnimation {
tabSelection = .thankYou
}
}
.navigationBarHidden($tabSelection.wrappedValue.hideNavigationBar())
}
var thankYou: some View {
ThankYouView()
.navigationBarHidden($tabSelection.wrappedValue.hideNavigationBar())
}
}
struct ExpanationView_Previews: PreviewProvider {
static var previews: some View {
ContentView()
}
}