Skip to content

Releases: johnpatrickmorgan/FlowStacks

v0.9.0

29 Aug 23:14
Compare
Choose a tag to compare
  • Switches to using NavigationStack whenever available. Fixes an issue with using NavigationView on v26.0.

0.8.4

15 May 08:41
9d06339
Compare
Choose a tag to compare
  • Makes FlowNavigator initialiser public (Thanks @JanRatJr)

v0.7.0

12 Aug 22:52
Compare
Choose a tag to compare
  • Fixes some issues with nested coordinators (#76).
  • Allows multiple screens to be dismissed in one update on iOS 17.

v0.6.0

24 May 09:30
Compare
Choose a tag to compare

This is a major new release that includes a lot of breaking changes. This rewrite has been discussed here - #51.

Changes:

  • Rewrites APIs to match the latest NavigationStack APIs. This package now takes SwiftUI's familiar and powerful NavigationStack API and gives it superpowers. The new FlowStack is not just for push navigation, but also for presenting sheets and full-screen covers. And because it's implemented using the navigation APIs available in older SwiftUI versions, you can still use it on earlier versions of iOS, tvOS, watchOS and macOS.

Migration docs

v0.4.0

29 Jan 21:47
Compare
Choose a tag to compare
  • Refactors Node to a struct and breaks out its functionality into separate modifiers (addresses #64).

v0.3.8

02 Jan 23:05
Compare
Choose a tag to compare
  • No longer wraps screen in a ZStack (#68). This was breaking the behaviour of @Environment(\.dismiss). This means in some rare circumstances that the user should ensure the screen has a stable identity (e.g. wrapping a top-level if or switch in something like a ZStack).

v0.3.2

05 Jun 00:08
Compare
Choose a tag to compare
  • Adds a FlowNavigator environment object for easier navigation from deeply nested views.

v0.3.1

13 May 21:18
49a750b
Compare
Choose a tag to compare
  • Fix dismiss completion for iOS 14.4 and below (Thanks @BohdanDatskiv!)

V0.2.4

18 Aug 23:30
Compare
Choose a tag to compare

No longer asserts when calling goBackToRoot() when already at the root. (Thanks @Kondamon!)

V0.2.2

27 May 21:54
0c4c2c1
Compare
Choose a tag to compare
  • Ensures Binding.withDelaysIfUnsupported runs on the main thread. (Thanks @ConfusedVorlon)