Did some major reformatting of the Change Log tab (now Docs) and will hopefully get to adding some more actual features soon
This commit is contained in:
parent
5578d86ccf
commit
7b421a0a73
9 changed files with 294 additions and 45 deletions
75
Splits/KnownIssues.swift
Normal file
75
Splits/KnownIssues.swift
Normal file
|
|
@ -0,0 +1,75 @@
|
|||
//
|
||||
// KnownIssues.swift
|
||||
// Splits
|
||||
//
|
||||
// Created by Isaac Greene on 6/3/22.
|
||||
//
|
||||
|
||||
import SwiftUI
|
||||
|
||||
struct RecentlyResolved: View {
|
||||
var body: some View {
|
||||
ScrollView {
|
||||
Text("Recently Resolved Issues")
|
||||
.font(.largeTitle)
|
||||
.bold()
|
||||
.padding(.top, 40)
|
||||
VStack(alignment: .leading) {
|
||||
Text("\n\u{2022} None since the addition of this tab")
|
||||
}
|
||||
.padding(30)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
struct HighPriority: View {
|
||||
var body: some View {
|
||||
ScrollView {
|
||||
Text("High Priority Issues")
|
||||
.font(.largeTitle)
|
||||
.bold()
|
||||
.padding(.top, 40)
|
||||
VStack(alignment: .leading) {
|
||||
Text("\n\u{2022} You can not dismiss the keyboard on iPhone\n\t\u{2022} This hides the tab bar at the bottom so you can't navigate the app after bringing it up")
|
||||
}
|
||||
.padding(30)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
struct MediumPriority: View {
|
||||
var body: some View {
|
||||
ScrollView {
|
||||
Text("Medium Priority Issues")
|
||||
.font(.largeTitle)
|
||||
.bold()
|
||||
.padding(.top, 40)
|
||||
VStack(alignment: .leading) {
|
||||
Text("Wow. Such Empty.")
|
||||
.italic()
|
||||
}
|
||||
.padding(30)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
struct LowPriority: View {
|
||||
var body: some View {
|
||||
ScrollView {
|
||||
Text("Low Priority Issues")
|
||||
.font(.largeTitle)
|
||||
.bold()
|
||||
.padding(.top, 40)
|
||||
VStack(alignment: .leading) {
|
||||
Text("\n\u{2022} Space between the equation and explanation in the \"Help\" tab is too large\n\u{2022} App has no custom icon")
|
||||
}
|
||||
.padding(30)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
struct KnownIssues_Previews: PreviewProvider {
|
||||
static var previews: some View {
|
||||
HighPriority()
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue