Fixed pace showing, added conversions between distance and pace. Added a new SecretView with some semi-private info. App is now in Version 1.0.0

This commit is contained in:
Isaac Greene 2022-06-10 18:24:42 -04:00
parent 7b421a0a73
commit b77ef882e8
62 changed files with 2021 additions and 82 deletions

View file

@ -0,0 +1,33 @@
//
// ChangeLogView.swift
// Splits
//
// Created by Isaac Greene on 4/3/22.
//
import SwiftUI
// this file will not have comments.
// this code is considered simple enough to be
// human-readable without aid, as long as
// the reader has a basic understanding of
// Swift and/or SwiftUI.
struct ChangeLog: View {
var body: some View {
List {
Section(header: Text("2022")) {
NavigationLink("June", destination: June2022())
NavigationLink("May", destination: May2022())
NavigationLink("April", destination: April2022())
NavigationLink("March", destination: March2022())
}
}
.listStyle(.insetGrouped)
.navigationTitle("Change Log")
}
}
struct ChangeLog_Previews: PreviewProvider {
static var previews: some View {
ChangeLog()
}
}

View file

@ -0,0 +1,12 @@
{
"data" : [
{
"filename" : "ChangeLogView.swift",
"idiom" : "universal"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}