Код: Выделить всё
struct cellView : View {
@State var name = ""
var body: some View {
VStack {
Text(name)
Button(action: { ***unwind to parent view code*** })
}
}
}
Подробнее здесь: https://stackoverflow.com/questions/586 ... ement-in-a
Код: Выделить всё
struct cellView : View {
@State var name = ""
var body: some View {
VStack {
Text(name)
Button(action: { ***unwind to parent view code*** })
}
}
}