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

Imagine a navigation controller which gets presented and contains multiple viewcontrollers, which are pushed because of a Route constructed out of Route identifiers with respect to some user navigation flow,...

This change has been made to take advantage of the `///` header-doc functionality in Xcode. Holding down Option while clicking on the method signatures of the Routable protocol will now...

I started playing around with this router for a WatchKit app I'm going to be working on. I realised that the router could not handle back button / swipe left...

UITabBarController allow to have multiple navigation stacks in each tabs. For example : ![tabbar](https://cloud.githubusercontent.com/assets/74581/26683425/0b7d45d2-46e4-11e7-8ea9-12bef7e75946.png) On the previous image we can see tat we have 4 different stacks at the same...

help wanted

It is very wasteful that the 3 different build targets each result in `carthage bootstrap` building dependencies for all platforms if the binaries cannot be downloaded. We should consider to...

I've called the usual `completionHandler()` function after implementing a route just like any other; however, every time I try to navigate to this route, it's still triggering `ReSwiftRouterStuck`. Are there...

My understanding of `NavigationState.route` is that each of its `RouteElementIdentifier` elements corresponds to a `Routable` that is triggered. So if my route state goes from `["home"]` to `["home", "favorites"]` than...

I've read through the ReadMe and a lot of the issues here. From what I've seen, some have experienced difficulties using this Router for specific issues like a Tab Bar...

With ReSwift `StandardAction` I can pass some arbitrary payload. Looks like I can't do it with the help of `SetRouteAction`, because it only takes an array of `RouteElementIdentifier`s which are,...

Hi, I am currently trying to refctor my app from MVVM to ReSwift. One of the things that i adopt is the ReSwiftRouter. The router allows me to navigate from...