SwiftUI中的Sheet推出新页面 记录一下SwiftUI如何从下往上推出新的页面 import SwiftUI struct SheetBootCamp: View { @State var showSheet = false var body: some View { ZStack{ Color.green .ignoresSafeArea() Button(action: { showSheet.toggle() ‘ }, label