Added tab view and restructured code to have just three tabs. Also got minutes to hours overflow working, seconds has currently gotten worse in functionality. See change log in-app for more details

This commit is contained in:
Isaac Greene 2022-04-10 00:16:34 -04:00
parent 15389248af
commit 8cb3960507
5 changed files with 103 additions and 98 deletions

View file

@ -6,22 +6,6 @@
//
import SwiftUI
struct ChangeLogView: View {
@State var showSheet = false
var body: some View {
VStack {
Button("Change log", action: {
self.showSheet.toggle()
})
.padding(.bottom, 25)
}
.sheet(isPresented: self.$showSheet, content: {
ChangeLog()
})
}
}
struct ChangeLog: View {
var body: some View {