Skip to content

Commit

Permalink
commented stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
c22dev committed Dec 22, 2023
1 parent 805d9c0 commit a4e1a05
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion Geranium/Cleaner/CleanerView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -9,20 +9,24 @@ import SwiftUI


struct CleanerView: View {
// view stuff
@Binding var isTabViewHidden: Bool
@State var exitStatus = false
@State var loadingBarStatus = false
@State var buttonAndSelection = true
@State var errorDetecteed = false
// sizes
@State private var safariCacheSize: Double = 0
@State private var GlobalCacheSize: Double = 0
@State private var OTACacheSize: Double = 0
@State private var progressAmount:CGFloat = 0
// user selection
@State var safari = false
@State var appCaches = false
@State var otaCaches = false
@State var batteryUsageDat = false
// roothelper output
@State var RHResult = ""
@State var errorDetecteed = false
var body: some View {
if UIDevice.current.userInterfaceIdiom == .pad {
// Here we remove NavigationStack for iPads. Why ? Cause pressing "Exit" button with NavigationStack would make a blank screen
Expand Down
2 changes: 1 addition & 1 deletion Geranium/WelcomeView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ struct WelcomeView: View {
}
if getDeviceCode() == "iPhone8,4" {
Section(header: Text("Hi ! SE 1 User")) {
Text("It looks like you are using the app on an iPhone SE 2016 (1st gen). You might encounter serious UI bugs. Please excuse me in advance.")
Text("It looks like you are using the app on an iPhone SE 2016 (1st gen). You might encounter serious UI issues. Please excuse me in advance.")
}
}
Section(header: Text("Log Collection")) {
Expand Down

0 comments on commit a4e1a05

Please sign in to comment.