Releases: johnpatrickmorgan/NavigationBackport
Releases · johnpatrickmorgan/NavigationBackport
v0.9.3
- Adds support for the
nbNavigationDestination(item: destination: )
method. (thanks @Yoichi-Yamanoi !)
v0.9.2
v0.9.0
- Uses
NavigationStack
for managing state and building views when available. This means pushing multiple screens in one state update no longer requires delays on OSes that supportNavigationStack
.
v0.8.0
- Allows
NavigationStack
to be used under the hood (if available) instead ofNavigationView
by adding a modifier, e,g..nbUseNavigationStack(.whenAvailable)
. - Removes the need to manually call
withDelaysIfUnsupported
- instead the library will automatically do so whenever needed. - Adds UI tests for example app.
v0.7.2
v0.7.1
v0.7.0
v0.3.0
- Adds
NBNavigationStack.CodableRepresentation
support. Thanks @pointfreeco!