0

ある SwiftUI ビューから別の SwiftUI ビューに移動しようとしていて、以下のコードに従って NavigationLink を使用していますが、次のエラーが発生します。タイプ '(destination: PlaylistTable)' の引数リスト

以下は、次のビューへのリンクをトリガーするボタンのコードです。

struct MusicButton: View {
    var body: some View {
        NavigationView {
        Button(action: {
            NavigationLink(destination: PlaylistTable())
        })
        { Image(systemName: "music.note.list")
            .resizable()
            .foregroundColor(Color.white)
            .frame(width: 25, height: 25, alignment: .center)
            .aspectRatio(contentMode: .fit)
            .font(Font.title.weight(.ultraLight))
            }
        }
    }
}
4

2 に答える 2