ReSwift-Router icon indicating copy to clipboard operation
ReSwift-Router copied to clipboard

Declarative Routing in Swift, Extension for ReSwift

Results 19 ReSwift-Router issues
Sort by recently updated
recently updated
newest added

Hello, In my own fork of this project, I've gone ahead to remove all references to `fatalError()` in my use of the Router. This warranted a change to the router...

Why my code does not run the protocol method ``` func showMainVC() { let mainVC = MainNavigationViewController() let nav = UINavigationController.init(rootViewController: mainVC) let leftViewController = LeftMenuViewController() let sideMenuController = LGSideMenuController.init(rootViewController:...

**Problem:** When using `ReSwiftRouter` we want every view controller change to be reflected by a route update. This means we need to be notified when UIKit's container view controllers trigger...

help wanted

Hi, I am trying to think what is the best way to use the Router with UIPageViewController. What i did so far is create a routable which receive the some...

Hey everybody, I'm working on an app in which we have many situations of master-detail flow, if we were using Storyboard segues we would use the Detail Segue. let detail:...

I was trying to implement the router on an app and it kept crashing with the error that I wasn't implementing the `Routable` methods which I had or I thought...

enhancement
help wanted
question

Does this router support interactive transitions? Successfully presenting the next view controller always works of course, but is there a way to handle cancelling the transition so the router won't...

question

I have an issue where the extension with the fatal error is being called instead of my custom procol conforming classes. I probably haven't set everything up right... here's the...

In some cases, when UIKit performs a transition that we cannot force through the router, we need to notify the router about the change (also discussed in #17). In such...

enhancement