- updated api for shop procuts, with lazy loading and proper structure - added loading indicator when user navigates to bottom indicator will be shown - Made shop product details view. - Added carousel with page indicator - added shadows to the images - added selection option for address - made address table dynamic - added pincode_serviceability_check_edd for checking the delivery date of the selected address.
29 lines
998 B
Swift
29 lines
998 B
Swift
//
|
|
// VersionTexts.swift
|
|
// WOKA
|
|
//
|
|
// Created by Bilal on 26/07/2024.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
extension Bundle {
|
|
public var appName: String { getInfo("CFBundleName") }
|
|
public var displayName: String { getInfo("CFBundleDisplayName") }
|
|
public var language: String { getInfo("CFBundleDevelopmentRegion") }
|
|
public var identifier: String { getInfo("CFBundleIdentifier") }
|
|
public var copyright: String { getInfo("NSHumanReadableCopyright").replacingOccurrences(of: "\\\\n", with: "\n") }
|
|
|
|
public var appBuild: String { getInfo("CFBundleVersion") }
|
|
public var appVersionLong: String { getInfo("CFBundleShortVersionString") }
|
|
//public var appVersionShort: String { getInfo("CFBundleShortVersion") }
|
|
|
|
fileprivate func getInfo(_ str: String) -> String { infoDictionary?[str] as? String ?? "⚠️" }
|
|
|
|
/*
|
|
Usage
|
|
Text("Ver: \(Bundle.main.appVersionLong) (\(Bundle.main.appBuild)) ")
|
|
|
|
*/
|
|
}
|