Код: Выделить всё
HStack(alignment: .firstTextBaseline, spacing: 6) {
TextField("0", value: $calories, format: .number)
.font(.title.weight(.bold))
.onChange(of: calories) { newValue in
calories = max(0, newValue)
}
Text("calories 🔥")
.font(.title.weight(.bold))
}
Подробнее здесь: https://stackoverflow.com/questions/797 ... h-a-two-or
Мобильная версия