- 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.
66 lines
1.8 KiB
Swift
66 lines
1.8 KiB
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 Theme{
|
|
static let homeExploreCell = "HomeExploreCell"
|
|
}
|
|
|
|
struct SideBarNav{
|
|
static let faqCell = "FaqCell"
|
|
}
|
|
|
|
struct Home{
|
|
static let blogsCell = "BlogsCell"
|
|
static let songListCell = "SongListCell"
|
|
static let userNotificationCell = "UserNotificationCell"
|
|
static let favouriteCell = "FavouriteCell"
|
|
}
|
|
|
|
struct WebSeries{
|
|
static let webSeriesCell = "WebSeriesCell"
|
|
static let webSeriesShowListingCell = "WebSeriesShowListingCell"
|
|
static let seasonCategoryCell = "SeasonCategoryCell"
|
|
static let webSeriesEpisodeCell = "WebSeriesEpisodeCell"
|
|
}
|
|
|
|
struct AudioBooks{
|
|
static let continueAudioCell = "ContinueAudioCell"
|
|
}
|
|
|
|
struct Shop{
|
|
static let shopListingCell = "ShopListingCell"
|
|
static let shopProductsCell = "ShopProductsCell"
|
|
static let shopProductImageCell = "ShopProductImageCell"
|
|
}
|
|
|
|
struct Cart{
|
|
static let cartListCell = "CartListCell"
|
|
static let cartPaymentOptionsCell = "CartPaymentOptionsCell"
|
|
static let couponCell = "CouponCell"
|
|
static let addressCell = "AddressCell"
|
|
}
|
|
}
|
|
}
|