This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// InteractiveReleaseNotes.swift | |
// DownPay for iOS | |
// | |
// Created by Life Utility Apps | |
// | |
import SwiftUI | |
import NukeUI |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// ExportUserDataView.swift | |
// DownPay for iOS | |
// | |
// Created by Life Utility Apps on 12/6/24. | |
// | |
import SwiftUI | |
enum EAppUserDataExportFileType: String, Identifiable, CaseIterable { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// StandardDateRangePicker.swift | |
// Downpayment Tracker | |
// | |
// Created by Life Utility Apps on 6/5/24. | |
// | |
import SwiftUI | |
struct StandardDateRangePickerSheet: View { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Inside your root TabView, add conditional logic to | |
// hide and show the tab icons if the associated | |
// user default hide is set to hidden. You might need | |
// to force a re-render of the entire TabView to | |
// prevent buggy effects. My implementation shows | |
// a progress view for 750ms to force the re-rendered tabs. | |
import SwiftUI | |
struct TabVisibilitySetting: View { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import SwiftUI | |
enum EStandardColorScheme: String, CaseIterable, Identifiable { | |
case system = "system" | |
case light = "light" | |
case dark = "dark" | |
var id: String { | |
return self.rawValue | |
} |