SwiftUI Swift 多个 sheet

今天做一个多个 sheet 的效果,点击下面三个按钮打开不同的 sheet


Show me the code

swift 复制代码
import SwiftUI

enum CurrentActiveSheet: Identifiable {
    case add, edit, delete

    var id: Int {
        hashValue
    }
}

struct MoreSheet: View {
    @State var currentActiveSheet: CurrentActiveSheet?

    var body: some View {
        HStack(spacing: 20) {
            Text("add")
                .padding()
                .background(Color.red)
                .onTapGesture {
                    currentActiveSheet = .add
                }
            
            Text("edit")
                .padding()
                .background(Color.green)
                .onTapGesture {
                    currentActiveSheet = .edit
                }
            
            Text("delete")
                .padding()
                .background(Color.blue)
                .onTapGesture {
                    currentActiveSheet = .delete
                }
        }
        .foregroundColor(Color.white)
        .sheet(item: $currentActiveSheet) { item in
            switch item {
            case .add:
                Text("add")
            case .edit:
                Text("edit")
            case .delete:
                Text("delete")
            }
        }
    }
}

struct MoreSheet_Previews: PreviewProvider {
    static var previews: some View {
        MoreSheet()
    }
}

Preview


喜欢或对你有帮助,点个赞吧,自己先点个嘿嘿。
有错误或者疑问还请评论指出。
我的个人网站 点击访问 hongweizhu.com

END

相关推荐
非专业程序员12 小时前
iOS 实现微信读书的仿真翻页
ios·swiftui·swift
非专业程序员Ping14 小时前
iOS 实现微信读书的仿真翻页
ios·swiftui·swift
lancoff2 天前
#3 Creating Shapes in SwiftUI
ios·swiftui
lancoff2 天前
#1 How to use Xcode in SwiftUI project
ios·swiftui
lancoff2 天前
#2 Adding Text in SwiftUI
ios·swiftui
xqlily3 天前
Swift:现代、高效、安全的编程语言(二)
swift
z***y8623 天前
Swift在iOS中的Xcode
ios·xcode·swift
songgeb4 天前
iOS Audio后台模式下能否执行非Audio逻辑
ios·swift
RickeyBoy5 天前
SwiftUI 手势冲突:修复 Navigation 返回手势
swiftui
xiAo_Ju5 天前
SwiftUI快速入门指南-关键字篇
swiftui