You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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 support NavigationStack.
Allows NavigationStack to be used under the hood (if available) instead of NavigationView by adding a modifier, e,g. .nbUseNavigationStack(.whenAvailable).
Removes the need to manually call withDelaysIfUnsupported - instead the library will automatically do so whenever needed.