class NitroSystemNavigationBar: HybridNitroSystemNavigationBarSpec {
    func getNavigationBarHeight() throws -> Double {
        return 0
    }

    func hideNavigationBar() throws {
        
    }

    func showNavigationBar() throws {
        
    }

    func enableImmersiveSticky() throws {
        
    }

    func exitImmersiveMode() throws {
        
    }

    func setNavigationBarColor(color: Double, isTranslucent: Bool?) throws {
        
    }

    func setLightNavigationBar(isLight: Bool) throws {
        
    }

    public func multiply(a: Double, b: Double) throws -> Double {
        return a * b
    }
}
