Mode:
Duration:
1
Coding works best on desktop or with an external keyboard.
Coding works best on desktop or with an external keyboard.
Demonstrates a simple SwiftUI app with a Todo list, adding tasks, and displaying them using SwiftUI List and State management.
import SwiftUI
struct ContentView: View {
@State private var todos: [String] = []
@State private var newTodo: String = ""
var body: some View {
NavigationView {
VStack {
HStack {
TextField("New Todo", text: $newTodo)
.textFieldStyle(RoundedBorderTextFieldStyle())
Button("Add") {
if !newTodo.isEmpty {
todos.append(newTodo)
newTodo = ""
}
}
}.padding()
List(todos, id: \ .self) { todo in
Text(todo)
}
}
.navigationTitle("Todo App")
}
}
}
@main
struct TodoApp: App {
var body: some Scene {
WindowGroup {
ContentView()
}
}
}SwiftUI is Apple’s declarative framework for building user interfaces across iOS, macOS, watchOS, and tvOS using Swift. It allows developers to create fully native apps with less code and real-time previews.
Origin & Creator
Created by Apple in 2019, SwiftUI was introduced to unify UI development across Apple platforms and replace UIKit/AppKit with a declarative approach.
Industrial Note
Perfect for Apple ecosystem apps where full native performance, Swift language, and declarative UI are priorities.