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:
parent
15389248af
commit
8cb3960507
5 changed files with 103 additions and 98 deletions
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue