Files
Woka_Native_iOS/WOKA/Authentication/AuthenticationStringConstant.swift
Bilal 5fdd255130 - fixed home name label content hugging issue
- added edit btn to full name
- Linked the add child to the userregisteration details
- Added Hindi Lingual file to profile view
- Made the custom alert for deactivate account
- updated the username check logic
- Added logout api and handled the user logout
- Handled the logout when device change globally
2024-06-06 20:19:22 +05:30

29 lines
806 B
Swift
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//
// AuthenticationStringConstant.swift
// WOKA
//
// Created by MacBook Pro on 29/04/24.
//
import Foundation
extension K{
struct AuthenticationStringConstant{
static let safeBelow = "Lets be Safe!"
static let safeAbove = "Lets Start Here"
static let emailAbove = "CAN WE HAVE YOUR EMAIL?"
static let emailBelow = "CAN WE HAVE YOUR PARENTS EMAIL?"
// PlaceHolderText
static let enterEmail = "Enter your email"
static let enterParentsEmail = "Enter your parent's email"
static let selectUsername = "Enter a username"
static let enterName = "Enter your name"
static let enterChildName = "Enter your child name"
static let enterPassword = "Enter your password"
}
}