Files
Woka_Native_iOS/WOKA/Constants K/ConstantString.swift
BilalKhanWDI 22796ec0b1 - Made new module for Cart
- Finalised Listing of CartList
- Added pull to refresh and swipe to delete
- Handled manual delete on icon click
- Made CouponCart listing view controller
- Added api to fetch the coupons
- Added api to apply coupon with model
- Made a coupon discount stack , will show up
2024-07-23 19:53:12 +05:30

38 lines
1.3 KiB
Swift

//
// ConstantString.swift
// WOKA
//
// Created by MacBook Pro on 06/05/24.
//
import Foundation
extension K{
struct ConstantString{
static let dollar = "$"
static let passRequirement = "- Be at least 8 characters in length. \n- Contain both upper and lowercase alphabetic characters (e.g. A-Z, a-z). \n- Have at least one numerical character (e.g. 0-9). \n- Have at least one special character (e.g. ~!@#$%^&*()_-+=)."
static let unRecognised = "Unrecognised error"
static let noInternet = "Make sure you are connected to the internet!"
static let minAge = "Minimum age requirement is 18 or above"
static let genderSel = "Please select Gender."
static let shortPass = "Password is too short."
static let shortUsername = "Username is too short."
static let shortName = "Name is too short."
static let userNameVerify = "Verifying Username"
static let intrest = "Please select intrest"
static let avatar = "Please select avatar"
static let dob = "Please select DOB."
static let registerUser = "Please wait registering user."
static let error = "Error"
static let rupeeSign = ""
}
}