- 12-1 woka meeting - Did Rnd on Container view. This will help for theming - Made a custom class to add the child view and remove child view. - Added Moon if the theme color is night - added the Ca animation for the stars to show glowing effect - Mapped all the stars with the delay time - Handled the theme switch
31 lines
619 B
Swift
31 lines
619 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"
|
|
}
|
|
|
|
struct Theme2{
|
|
static let homeExploreCell = "HomeExploreCell"
|
|
}
|
|
}
|
|
}
|