ContentView.swift
// // ContentView.swift // swiftuidev // // Created by Cairocoders // import SwiftUI struct ContentView: View { @State private var locations = ["Olongapo", "Angeles", "Subic"] var body: some View { NavigationView { List { ForEach(locations, id: \.self) { location in Text(location) } } .navigationBarTitle(Text("Locations")) .navigationBarItems(trailing: Button(action: { self.addRow() }) { Image(systemName: "plus") }) } } private func addRow() { self.locations.append("New Location") } } struct ContentView_Previews: PreviewProvider { static var previews: some View { ContentView() } }