INNER CODE UNIT · Swift
application
arkivanov/Decompose · sample/app-ios-compose/app-ios-compose/iOSApp.swift:32
func application(_ application: UIApplication, shouldSaveSecureApplicationState coder: NSCoder) -> Bool {
StateKeeperUtilsKt.save(coder: coder, state: stateKeeper.save())
return true
}
func application(_ application: UIApplication, shouldRestoreSecureApplicationState coder: NSCoder) -> Bool {
// stateKeeper = StateKeeperDispatcherKt.StateKeeperDispatcher(savedState: StateKeeperUtilsKt.restore(coder: coder))
return true
}
}