Post

Replies

Boosts

Views

Activity

Reply to SwiftUI toolbar not showing on a NavigationLink view
Try adding the navigationViewStyle modifier with StackNavigationViewStyle() on your NavigationView (instead of using the DefaultNavigationViewStyle() or DoubleColumnNavigationViewStyle() ) and see if the issue goes away. Should look something like this in code: NavigationView{ /*other embedded views*/ } .navigationViewStyle(StackNavigationViewStyle()) If this navigation style suits you for navigating across your views, especially on larger screens, you should be good
Nov ’20