Skip to content

Instantly share code, notes, and snippets.

View rqbctg's full-sized avatar

Mohammad Rakib rqbctg

View GitHub Profile
@rqbctg
rqbctg / AppRootChanger.swift
Created August 27, 2025 06:41
A Simple Yet Powerful RootNavigation Handler
// MARK: - Protocol for Root Changing
protocol RootChanging {
func changeRoot(to viewController: UIViewController, in navigationController: UINavigationController)
}
// MARK: - Concrete Root Changer
class AppRootChanger: RootChanging {
func changeRoot(to viewController: UIViewController, in navigationController: UINavigationController) {
let direction: CATransitionSubtype = .fromRight