iOS Developer | iOS Разработка | Мобильная разработка | SWIFT: post #1649 — TG.ME

struct ContentView: View {
@State private var counter = 0

var body: some View {
VStack {
Text("Counter: \(counter)")
Button("Increase") {
let _ = counter + 1
}
}
}
}
May 4, 2025 977