DK
Size: a a a
GK
D
struct First: View {
@State var secondFull = false
var body: some View {
VStack {
Text("First")
.foregroundColor(.blue)
.onTapGesture {
secondFull.toggle()
}
fullScreenCover(isPresented: $secondFull, content: {
Second()
})
}
}
}
GK
GK
GK
AB