- Added a star above the grass and added it to the animation. - Woke Client call 1:15 - 1:40 - Added Sidebar theme clicks and added userdefaults with checks for default loading. Also added to logout - Handled the Theme change from sidebar, also handled the default theme selected and loading it at the time of startup - Fixed issue of sidebar showing up, left side blacktint was not coming. It was the issue of ViewLifeCycle - Theme 2 Explore woka items size ratio updated for auto layouts - Worked on RootView Navigation.
91 lines
3.5 KiB
Swift
91 lines
3.5 KiB
Swift
//
|
|
// AppDelegate.swift
|
|
// WOKA
|
|
//
|
|
// Created by MacBook Pro on 25/04/24.
|
|
//
|
|
|
|
import UIKit
|
|
import Lottie
|
|
import IQKeyboardManagerSwift
|
|
|
|
@main
|
|
class AppDelegate: UIResponder, UIApplicationDelegate {
|
|
|
|
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
|
|
|
|
// enabling the IQKeyboard manager instance
|
|
IQKeyboardManager.shared.enable = true
|
|
IQKeyboardManager.shared.resignOnTouchOutside = true
|
|
// IQKeyboardManager.shared.enableAutoToolbar = false
|
|
// IQKeyboardManager.shared.layoutIfNeededOnUpdate = true
|
|
|
|
// Set the authentication ID Pass after app starts
|
|
AuthFunc.shareInstance.setAuthIDPass()
|
|
|
|
// Set the toast defaults
|
|
setupToast()
|
|
|
|
//Lottie Config to handle rendering
|
|
LottieConfiguration.shared.renderingEngine = .mainThread
|
|
|
|
//Configure and modify the side bar
|
|
configureSideBar()
|
|
|
|
|
|
return true
|
|
}
|
|
|
|
// MARK: UISceneSession Lifecycle
|
|
|
|
func application(_ application: UIApplication, configurationForConnecting connectingSceneSession: UISceneSession, options: UIScene.ConnectionOptions) -> UISceneConfiguration {
|
|
// Called when a new scene session is being created.
|
|
// Use this method to select a configuration to create the new scene with.
|
|
return UISceneConfiguration(name: "Default Configuration", sessionRole: connectingSceneSession.role)
|
|
}
|
|
|
|
func application(_ application: UIApplication, didDiscardSceneSessions sceneSessions: Set<UISceneSession>) {
|
|
// Called when the user discards a scene session.
|
|
// If any sessions were discarded while the application was not running, this will be called shortly after application:didFinishLaunchingWithOptions.
|
|
// Use this method to release any resources that were specific to the discarded scenes, as they will not return.
|
|
}
|
|
|
|
}
|
|
|
|
extension AppDelegate {
|
|
// MARK: - Toast Setup
|
|
|
|
private func setupToast(){
|
|
var style = ToastStyle()
|
|
style.displayShadow = true
|
|
style.messageColor = UIColor.white
|
|
style.backgroundColor = UIColor.appColor(.TextDarkBlue)!
|
|
style.messageFont = FontCustom.shareInstance.customFont(fontName: .Exo2_Medium, size: 16)
|
|
style.titleAlignment = .center
|
|
style.messageAlignment = .center
|
|
style.cornerRadius = 10
|
|
ToastManager.shared.style = style
|
|
|
|
// toggle "tap to dismiss" functionality
|
|
ToastManager.shared.isTapToDismissEnabled = true
|
|
|
|
// toggle queueing behavior
|
|
ToastManager.shared.isQueueEnabled = false
|
|
}
|
|
|
|
// MARK: - Configure Sidebar
|
|
|
|
final private func configureSideBar(){
|
|
SideMenuController.preferences.basic.menuWidth = UIScreen.main.bounds.width - 79
|
|
SideMenuController.preferences.animation.shadowAlpha = 0.5
|
|
SideMenuController.preferences.basic.direction = .right
|
|
SideMenuController.preferences.basic.enableRubberEffectWhenPanning = true
|
|
SideMenuController.preferences.basic.position = .above
|
|
SideMenuController.preferences.basic.enablePanGesture = true
|
|
SideMenuController.preferences.basic.enablePanGesture = true
|
|
SideMenuController.preferences.basic.defaultCacheKey = "default"
|
|
SideMenuController.preferences.animation.hideDuration = 0.6
|
|
SideMenuController.preferences.animation.revealDuration = 0.6
|
|
}
|
|
}
|