RxFlow Versions Save

RxFlow is a navigation framework for iOS applications based on a Reactive Flow Coordinator pattern

2.13.0

2 years ago

This release:

  • brings the usage of xcframeworks for the Carthage version.
  • replaces flatMapLatest with flatMap for the adapt function.

2.12.4

2 years ago
  • fix (for real !) a reentrancy issue with forwardToCurrent.

2.12.3

2 years ago
  • fix "Unhandled files" warnings in the Package.swift file
  • fix re-entrancy issue in the FlowCoordinator file
  • revert to a strong retain policy in the Reactive+UIViewController file (see version 2.12.0)

2.12.2

2 years ago

This release restores the navigation on the main thread (regression spotted in the version 2.12.1)

2.12.1

3 years ago

This release fixes a possible memory leak when the Coordinator's lifecycle was unexpectedly longer than the flow ones (thanks to @asiliuk)

2.12.0

3 years ago

What you'll find in this release:

2.11.0

3 years ago

This Release:

  • fixes an issue with SPM
  • introduce the possibility to listen for steps event if a VC is dismissed (used for UIPageViewController, see the demo app)

2.10.0

3 years ago

This Release mostly focuses on the upgrade to Xcode12/Swift 5.3

2.9.1

3 years ago

This release:

2.9.0

3 years ago

This release brings:

  • a way to push a step through all the Flows hierarchy from the FlowCoordinator. It can be useful for deep linking: flowCoordinator.navigate(to:)
  • a new syntax for navigating with multiple flows: Flows.whenReady() is deprecated. You should instead use: Flows.use(when:) (see the example in the Readme.md and the demo application).