- Finalised the registration for parent - Finalised the flow for above 16 and go the registeration completed. - Added a View controller for showing the linked child.
27 lines
506 B
Swift
27 lines
506 B
Swift
//
|
|
// CellIdentifier.swift
|
|
// WOKA
|
|
//
|
|
// Created by Bilal on 26/04/2024.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
extension K{
|
|
|
|
struct CellIdentifier{
|
|
|
|
struct OnBoarding{
|
|
static let onBoardCell = "OnBoardCell"
|
|
|
|
//
|
|
}
|
|
|
|
struct Authentication{
|
|
static let yourIntrestCell = "YourIntrestCell"
|
|
static let selectAvatarCell = "SelectAvatarCell"
|
|
static let linkedChildCell = "LinkedChildCell"
|
|
}
|
|
}
|
|
}
|