Swiftui侧面菜单按钮动作

时间:2019-12-09 20:55:17

标签: button action swiftui

我想创建一个我做过的侧边菜单,但我不知道如何添加将按钮带到新视图的按钮操作,
这是我想要的示例:
“个人资料”按钮进入“个人资料”视图
消息到消息视图,
设置为“设置”视图
3种不同的观点
这是我的侧面菜单代码

var body: some View {
            VStack(alignment: .leading) {
                HStack {
                    Image(systemName: "person")
                        .foregroundColor(.gray)
                        .imageScale(.large)
                    Text("Profile")
                        .foregroundColor(.gray)
                        .font(.headline)
                }
                .padding(.top, 100)
                HStack {
                    Image(systemName: "envelope")
                        .foregroundColor(.gray)
                        .imageScale(.large)
                    Text("Messages")
                        .foregroundColor(.gray)
                        .font(.headline)
                }
                    .padding(.top, 30)
                HStack {
                    Image(systemName: "gear")
                        .foregroundColor(.gray)
                        .imageScale(.large)
                    Text("Settings")
                        .foregroundColor(.gray)
                        .font(.headline)
                }
                .padding(.top, 30)
                Spacer()
            }
                .padding()
                .frame(maxWidth: .infinity, alignment: .leading)
                .background(Color(red: 32/255, green: 32/255, blue: 32/255))
                .edgesIgnoringSafeArea(.all)
        }
    }

谢谢

0 个答案:

没有答案