NavigationViewの中にList、.toolbar その中にToolbarItemを用いています。
ToolbarItem(placement: .bottomBar){ NavigationLink{NextView()}}{ Image(systemName: "trash")}}
とすると、Trailing closure passed to parameter of type 'Visibility' that does not accept a closure というエラーメッセージがでます。
実現したいこと
ToolbarItemでNavigationLinkを使って、NextViewに遷移する。
発生している問題・エラーメッセージ
ToolbarItem(placement: .bottomBar){ NavigationLink{NextView()}}{ Image(systemName: "trash")}} とすると、Trailing closure passed to parameter of type 'Visibility' that does not accept a closure というエラーメッセージがでます。
該当のソースコード
SwiftUI
ToolbarItem(placement: .bottomBar){ NavigationLink{NextView()}}{ Image(systemName: "trash")}}
### 試したこと ToolbarItem(placement: .bottomBar){ NavigationLink(destination: NextView())}}{ Image(systemName: "trash")}} や ToolbarItem(placement: .bottomBar)Button(action: {isNext.toggle()}) { Image(systemName: "trash")}} NavigationLink(destination: NextView(), isActive: $isNext) としてみましたが、 動きませんでした。 ### 補足情報(FW/ツールのバージョンなど) Xcodeはver.14.1です。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。