It's been so long I don't even know what I changed. Removed the contacts tab completely, before it was still in the app just not accessible. Switched over from RichTextView to iosMath saving about 4MB. Couple small design tweaks. Reduced total app size from 10MB to 4.5

This commit is contained in:
Isaac Greene 2023-06-06 10:42:22 -04:00
parent 0dc0267dbd
commit 099728c760
17 changed files with 222 additions and 395 deletions

View file

@ -0,0 +1,26 @@
//
// ComingSoonView.swift
// Paces
//
// Created by Isaac Greene on 2022-09-16.
//
import SwiftUI
import iosMath
import UIKit
struct ComingSoonView: View {
var body: some View {
VStack {
Image(systemName: "clock.arrow.circlepath")
.frame(maxWidth: 100)
Text("Coming soon!")
}
}
}
struct ComingSoonView_Previews: PreviewProvider {
static var previews: some View {
ComingSoonView()
}
}