Код: Выделить всё
import SwiftUI
struct ContentView: View {
@State private var dialogShowing: Bool = false
var body: some View {
VStack {
Button("Press me") {
dialogShowing = true
}
}
.confirmationDialog("Options", isPresented: dialogShowing) {
Button("Option A"){}
Button("Option B"){}
}
}
}

iOS 26

Подробнее здесь: https://stackoverflow.com/questions/798 ... -in-ios-26