Это может быть решено следующим образом: < /p>
Код: Выделить всё
struct TappableButton: View {
let action: () -> ()
let label: () -> Label
var body: some View {
label()
.highPriorityGesture(
TapGesture().onEnded(action)
)
}
}
Подробнее здесь: https://stackoverflow.com/questions/797 ... for-ios-18
Мобильная версия