├── Contacts-SwiftUI.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcuserdata │ └── bobby.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist ├── Contacts-SwiftUI ├── AppDelegate.swift ├── Assets.xcassets │ ├── AlaniKahale.imageset │ │ ├── AlaniKahale.png │ │ └── Contents.json │ ├── AlissaMurashev.imageset │ │ ├── AlissaMurashev.png │ │ └── Contents.json │ ├── AmandaCarpenter.imageset │ │ ├── AmandaCarpenter.png │ │ └── Contents.json │ ├── AmosHerring.imageset │ │ ├── AmosHerring.png │ │ └── Contents.json │ ├── AnaSalama.imageset │ │ ├── AnaSalama.png │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── AvinashSubramanian.imageset │ │ ├── AvinashSubramanian.png │ │ └── Contents.json │ ├── CandiceBunkley.imageset │ │ ├── CandiceBunkley.png │ │ └── Contents.json │ ├── Contents.json │ ├── DariusGalloway.imageset │ │ ├── Contents.json │ │ └── DariusGalloway.png │ ├── EdwardQuevedo.imageset │ │ ├── Contents.json │ │ └── EdwardQuevedo.png │ ├── GregoryHester.imageset │ │ ├── Contents.json │ │ └── GregoryHester.png │ ├── HarpreetSingh.imageset │ │ ├── Contents.json │ │ └── HarpreetSingh.png │ ├── HumayunKhan.imageset │ │ ├── Contents.json │ │ └── HumayunKhan.png │ ├── JameelaAhmed.imageset │ │ ├── Contents.json │ │ └── JameelaAhmed.png │ ├── JarrodStanford.imageset │ │ ├── Contents.json │ │ └── JarrodStanford.png │ ├── JeffreyCambry.imageset │ │ ├── Contents.json │ │ └── JeffreyCambry.png │ ├── KatherineReese.imageset │ │ ├── Contents.json │ │ └── KatherineReese.png │ ├── LisaJennings.imageset │ │ ├── Contents.json │ │ └── LisaJennings.png │ ├── MinhQuangTran.imageset │ │ ├── Contents.json │ │ └── MinhQuangTran.png │ ├── OdomTsuru.imageset │ │ ├── Contents.json │ │ └── OdomTsuru.png │ ├── PeterWeng.imageset │ │ ├── Contents.json │ │ └── PeterWeng.png │ ├── RicardoCintron.imageset │ │ ├── Contents.json │ │ └── RicardoCintron.png │ ├── SelinaMejia.imageset │ │ ├── Contents.json │ │ └── SelinaMejia.png │ ├── StephanieVelasquez.imageset │ │ ├── Contents.json │ │ └── StephanieVelasquez.png │ ├── TayanitaPage.imageset │ │ ├── Contents.json │ │ └── TayanitaPage.png │ ├── TobiasRay.imageset │ │ ├── Contents.json │ │ └── TobiasRay.png │ ├── VictoriaBrown.imageset │ │ ├── Contents.json │ │ └── VictoriaBrown.png │ └── default.imageset │ │ ├── Contents.json │ │ └── default.png ├── Base.lproj │ └── LaunchScreen.storyboard ├── ContactsDB.plist ├── Info.plist ├── Model │ ├── Contact.swift │ ├── Data.swift │ └── UserData.swift ├── Preview Content │ └── Preview Assets.xcassets │ │ └── Contents.json ├── SceneDelegate.swift └── View │ ├── ContactDetail.swift │ ├── ContactList.swift │ └── ContactRow.swift ├── README.md ├── screenshot1.png ├── screenshot2.png └── screenshot3.png /Contacts-SwiftUI.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 50; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | C5396AC722AC1F610050AC67 /* UserData.swift in Sources */ = {isa = PBXBuildFile; fileRef = C5396AC622AC1F610050AC67 /* UserData.swift */; }; 11 | C5396ACB22AC2B330050AC67 /* ContactRow.swift in Sources */ = {isa = PBXBuildFile; fileRef = C5396ACA22AC2B330050AC67 /* ContactRow.swift */; }; 12 | C5396ACD22AC2B650050AC67 /* ContactDetail.swift in Sources */ = {isa = PBXBuildFile; fileRef = C5396ACC22AC2B650050AC67 /* ContactDetail.swift */; }; 13 | C5E5197022A9C24F001FD52C /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = C5E5196F22A9C24F001FD52C /* AppDelegate.swift */; }; 14 | C5E5197222A9C24F001FD52C /* SceneDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = C5E5197122A9C24F001FD52C /* SceneDelegate.swift */; }; 15 | C5E5197422A9C24F001FD52C /* ContactList.swift in Sources */ = {isa = PBXBuildFile; fileRef = C5E5197322A9C24F001FD52C /* ContactList.swift */; }; 16 | C5E5197622A9C250001FD52C /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = C5E5197522A9C250001FD52C /* Assets.xcassets */; }; 17 | C5E5197922A9C250001FD52C /* Preview Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = C5E5197822A9C250001FD52C /* Preview Assets.xcassets */; }; 18 | C5E5197C22A9C250001FD52C /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = C5E5197A22A9C250001FD52C /* LaunchScreen.storyboard */; }; 19 | C5E5198622A9C351001FD52C /* Contact.swift in Sources */ = {isa = PBXBuildFile; fileRef = C5E5198322A9C351001FD52C /* Contact.swift */; }; 20 | C5E5198722A9C351001FD52C /* Data.swift in Sources */ = {isa = PBXBuildFile; fileRef = C5E5198422A9C351001FD52C /* Data.swift */; }; 21 | C5E5198822A9C351001FD52C /* ContactsDB.plist in Resources */ = {isa = PBXBuildFile; fileRef = C5E5198522A9C351001FD52C /* ContactsDB.plist */; }; 22 | /* End PBXBuildFile section */ 23 | 24 | /* Begin PBXFileReference section */ 25 | C5396AC622AC1F610050AC67 /* UserData.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UserData.swift; sourceTree = ""; }; 26 | C5396ACA22AC2B330050AC67 /* ContactRow.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ContactRow.swift; sourceTree = ""; }; 27 | C5396ACC22AC2B650050AC67 /* ContactDetail.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ContactDetail.swift; sourceTree = ""; }; 28 | C5E5196C22A9C24F001FD52C /* Contacts-SwiftUI.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "Contacts-SwiftUI.app"; sourceTree = BUILT_PRODUCTS_DIR; }; 29 | C5E5196F22A9C24F001FD52C /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; 30 | C5E5197122A9C24F001FD52C /* SceneDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SceneDelegate.swift; sourceTree = ""; }; 31 | C5E5197322A9C24F001FD52C /* ContactList.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ContactList.swift; sourceTree = ""; }; 32 | C5E5197522A9C250001FD52C /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; 33 | C5E5197822A9C250001FD52C /* Preview Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = "Preview Assets.xcassets"; sourceTree = ""; }; 34 | C5E5197B22A9C250001FD52C /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = ""; }; 35 | C5E5197D22A9C250001FD52C /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 36 | C5E5198322A9C351001FD52C /* Contact.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Contact.swift; sourceTree = ""; }; 37 | C5E5198422A9C351001FD52C /* Data.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Data.swift; sourceTree = ""; }; 38 | C5E5198522A9C351001FD52C /* ContactsDB.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = ContactsDB.plist; sourceTree = ""; }; 39 | /* End PBXFileReference section */ 40 | 41 | /* Begin PBXFrameworksBuildPhase section */ 42 | C5E5196922A9C24F001FD52C /* Frameworks */ = { 43 | isa = PBXFrameworksBuildPhase; 44 | buildActionMask = 2147483647; 45 | files = ( 46 | ); 47 | runOnlyForDeploymentPostprocessing = 0; 48 | }; 49 | /* End PBXFrameworksBuildPhase section */ 50 | 51 | /* Begin PBXGroup section */ 52 | C5396AC822AC29620050AC67 /* Model */ = { 53 | isa = PBXGroup; 54 | children = ( 55 | C5E5198422A9C351001FD52C /* Data.swift */, 56 | C5E5198322A9C351001FD52C /* Contact.swift */, 57 | C5396AC622AC1F610050AC67 /* UserData.swift */, 58 | ); 59 | path = Model; 60 | sourceTree = ""; 61 | }; 62 | C5396AC922AC29A80050AC67 /* View */ = { 63 | isa = PBXGroup; 64 | children = ( 65 | C5E5197322A9C24F001FD52C /* ContactList.swift */, 66 | C5396ACA22AC2B330050AC67 /* ContactRow.swift */, 67 | C5396ACC22AC2B650050AC67 /* ContactDetail.swift */, 68 | ); 69 | path = View; 70 | sourceTree = ""; 71 | }; 72 | C5E5196322A9C24F001FD52C = { 73 | isa = PBXGroup; 74 | children = ( 75 | C5E5196E22A9C24F001FD52C /* Contacts-SwiftUI */, 76 | C5E5196D22A9C24F001FD52C /* Products */, 77 | ); 78 | sourceTree = ""; 79 | }; 80 | C5E5196D22A9C24F001FD52C /* Products */ = { 81 | isa = PBXGroup; 82 | children = ( 83 | C5E5196C22A9C24F001FD52C /* Contacts-SwiftUI.app */, 84 | ); 85 | name = Products; 86 | sourceTree = ""; 87 | }; 88 | C5E5196E22A9C24F001FD52C /* Contacts-SwiftUI */ = { 89 | isa = PBXGroup; 90 | children = ( 91 | C5E5196F22A9C24F001FD52C /* AppDelegate.swift */, 92 | C5E5197122A9C24F001FD52C /* SceneDelegate.swift */, 93 | C5396AC822AC29620050AC67 /* Model */, 94 | C5396AC922AC29A80050AC67 /* View */, 95 | C5E5197522A9C250001FD52C /* Assets.xcassets */, 96 | C5E5197A22A9C250001FD52C /* LaunchScreen.storyboard */, 97 | C5E5198522A9C351001FD52C /* ContactsDB.plist */, 98 | C5E5197D22A9C250001FD52C /* Info.plist */, 99 | C5E5197722A9C250001FD52C /* Preview Content */, 100 | ); 101 | path = "Contacts-SwiftUI"; 102 | sourceTree = ""; 103 | }; 104 | C5E5197722A9C250001FD52C /* Preview Content */ = { 105 | isa = PBXGroup; 106 | children = ( 107 | C5E5197822A9C250001FD52C /* Preview Assets.xcassets */, 108 | ); 109 | path = "Preview Content"; 110 | sourceTree = ""; 111 | }; 112 | /* End PBXGroup section */ 113 | 114 | /* Begin PBXNativeTarget section */ 115 | C5E5196B22A9C24F001FD52C /* Contacts-SwiftUI */ = { 116 | isa = PBXNativeTarget; 117 | buildConfigurationList = C5E5198022A9C250001FD52C /* Build configuration list for PBXNativeTarget "Contacts-SwiftUI" */; 118 | buildPhases = ( 119 | C5E5196822A9C24F001FD52C /* Sources */, 120 | C5E5196922A9C24F001FD52C /* Frameworks */, 121 | C5E5196A22A9C24F001FD52C /* Resources */, 122 | ); 123 | buildRules = ( 124 | ); 125 | dependencies = ( 126 | ); 127 | name = "Contacts-SwiftUI"; 128 | productName = "Contacts-SwiftUI"; 129 | productReference = C5E5196C22A9C24F001FD52C /* Contacts-SwiftUI.app */; 130 | productType = "com.apple.product-type.application"; 131 | }; 132 | /* End PBXNativeTarget section */ 133 | 134 | /* Begin PBXProject section */ 135 | C5E5196422A9C24F001FD52C /* Project object */ = { 136 | isa = PBXProject; 137 | attributes = { 138 | LastSwiftUpdateCheck = 1100; 139 | LastUpgradeCheck = 1100; 140 | ORGANIZATIONNAME = "Bobby Conti"; 141 | TargetAttributes = { 142 | C5E5196B22A9C24F001FD52C = { 143 | CreatedOnToolsVersion = 11.0; 144 | }; 145 | }; 146 | }; 147 | buildConfigurationList = C5E5196722A9C24F001FD52C /* Build configuration list for PBXProject "Contacts-SwiftUI" */; 148 | compatibilityVersion = "Xcode 9.3"; 149 | developmentRegion = en; 150 | hasScannedForEncodings = 0; 151 | knownRegions = ( 152 | en, 153 | Base, 154 | ); 155 | mainGroup = C5E5196322A9C24F001FD52C; 156 | productRefGroup = C5E5196D22A9C24F001FD52C /* Products */; 157 | projectDirPath = ""; 158 | projectRoot = ""; 159 | targets = ( 160 | C5E5196B22A9C24F001FD52C /* Contacts-SwiftUI */, 161 | ); 162 | }; 163 | /* End PBXProject section */ 164 | 165 | /* Begin PBXResourcesBuildPhase section */ 166 | C5E5196A22A9C24F001FD52C /* Resources */ = { 167 | isa = PBXResourcesBuildPhase; 168 | buildActionMask = 2147483647; 169 | files = ( 170 | C5E5197C22A9C250001FD52C /* LaunchScreen.storyboard in Resources */, 171 | C5E5197922A9C250001FD52C /* Preview Assets.xcassets in Resources */, 172 | C5E5197622A9C250001FD52C /* Assets.xcassets in Resources */, 173 | C5E5198822A9C351001FD52C /* ContactsDB.plist in Resources */, 174 | ); 175 | runOnlyForDeploymentPostprocessing = 0; 176 | }; 177 | /* End PBXResourcesBuildPhase section */ 178 | 179 | /* Begin PBXSourcesBuildPhase section */ 180 | C5E5196822A9C24F001FD52C /* Sources */ = { 181 | isa = PBXSourcesBuildPhase; 182 | buildActionMask = 2147483647; 183 | files = ( 184 | C5396AC722AC1F610050AC67 /* UserData.swift in Sources */, 185 | C5E5198622A9C351001FD52C /* Contact.swift in Sources */, 186 | C5E5197022A9C24F001FD52C /* AppDelegate.swift in Sources */, 187 | C5E5197222A9C24F001FD52C /* SceneDelegate.swift in Sources */, 188 | C5E5198722A9C351001FD52C /* Data.swift in Sources */, 189 | C5396ACD22AC2B650050AC67 /* ContactDetail.swift in Sources */, 190 | C5396ACB22AC2B330050AC67 /* ContactRow.swift in Sources */, 191 | C5E5197422A9C24F001FD52C /* ContactList.swift in Sources */, 192 | ); 193 | runOnlyForDeploymentPostprocessing = 0; 194 | }; 195 | /* End PBXSourcesBuildPhase section */ 196 | 197 | /* Begin PBXVariantGroup section */ 198 | C5E5197A22A9C250001FD52C /* LaunchScreen.storyboard */ = { 199 | isa = PBXVariantGroup; 200 | children = ( 201 | C5E5197B22A9C250001FD52C /* Base */, 202 | ); 203 | name = LaunchScreen.storyboard; 204 | sourceTree = ""; 205 | }; 206 | /* End PBXVariantGroup section */ 207 | 208 | /* Begin XCBuildConfiguration section */ 209 | C5E5197E22A9C250001FD52C /* Debug */ = { 210 | isa = XCBuildConfiguration; 211 | buildSettings = { 212 | ALWAYS_SEARCH_USER_PATHS = NO; 213 | CLANG_ANALYZER_NONNULL = YES; 214 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; 215 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; 216 | CLANG_CXX_LIBRARY = "libc++"; 217 | CLANG_ENABLE_MODULES = YES; 218 | CLANG_ENABLE_OBJC_ARC = YES; 219 | CLANG_ENABLE_OBJC_WEAK = YES; 220 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 221 | CLANG_WARN_BOOL_CONVERSION = YES; 222 | CLANG_WARN_COMMA = YES; 223 | CLANG_WARN_CONSTANT_CONVERSION = YES; 224 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 225 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 226 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 227 | CLANG_WARN_EMPTY_BODY = YES; 228 | CLANG_WARN_ENUM_CONVERSION = YES; 229 | CLANG_WARN_INFINITE_RECURSION = YES; 230 | CLANG_WARN_INT_CONVERSION = YES; 231 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 232 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 233 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 234 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 235 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 236 | CLANG_WARN_STRICT_PROTOTYPES = YES; 237 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 238 | CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; 239 | CLANG_WARN_UNREACHABLE_CODE = YES; 240 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 241 | COPY_PHASE_STRIP = NO; 242 | DEBUG_INFORMATION_FORMAT = dwarf; 243 | ENABLE_STRICT_OBJC_MSGSEND = YES; 244 | ENABLE_TESTABILITY = YES; 245 | GCC_C_LANGUAGE_STANDARD = gnu11; 246 | GCC_DYNAMIC_NO_PIC = NO; 247 | GCC_NO_COMMON_BLOCKS = YES; 248 | GCC_OPTIMIZATION_LEVEL = 0; 249 | GCC_PREPROCESSOR_DEFINITIONS = ( 250 | "DEBUG=1", 251 | "$(inherited)", 252 | ); 253 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 254 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 255 | GCC_WARN_UNDECLARED_SELECTOR = YES; 256 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 257 | GCC_WARN_UNUSED_FUNCTION = YES; 258 | GCC_WARN_UNUSED_VARIABLE = YES; 259 | IPHONEOS_DEPLOYMENT_TARGET = 13.0; 260 | MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; 261 | MTL_FAST_MATH = YES; 262 | ONLY_ACTIVE_ARCH = YES; 263 | SDKROOT = iphoneos; 264 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; 265 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 266 | }; 267 | name = Debug; 268 | }; 269 | C5E5197F22A9C250001FD52C /* Release */ = { 270 | isa = XCBuildConfiguration; 271 | buildSettings = { 272 | ALWAYS_SEARCH_USER_PATHS = NO; 273 | CLANG_ANALYZER_NONNULL = YES; 274 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; 275 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; 276 | CLANG_CXX_LIBRARY = "libc++"; 277 | CLANG_ENABLE_MODULES = YES; 278 | CLANG_ENABLE_OBJC_ARC = YES; 279 | CLANG_ENABLE_OBJC_WEAK = YES; 280 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 281 | CLANG_WARN_BOOL_CONVERSION = YES; 282 | CLANG_WARN_COMMA = YES; 283 | CLANG_WARN_CONSTANT_CONVERSION = YES; 284 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 285 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 286 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 287 | CLANG_WARN_EMPTY_BODY = YES; 288 | CLANG_WARN_ENUM_CONVERSION = YES; 289 | CLANG_WARN_INFINITE_RECURSION = YES; 290 | CLANG_WARN_INT_CONVERSION = YES; 291 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 292 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 293 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 294 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 295 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 296 | CLANG_WARN_STRICT_PROTOTYPES = YES; 297 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 298 | CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; 299 | CLANG_WARN_UNREACHABLE_CODE = YES; 300 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 301 | COPY_PHASE_STRIP = NO; 302 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 303 | ENABLE_NS_ASSERTIONS = NO; 304 | ENABLE_STRICT_OBJC_MSGSEND = YES; 305 | GCC_C_LANGUAGE_STANDARD = gnu11; 306 | GCC_NO_COMMON_BLOCKS = YES; 307 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 308 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 309 | GCC_WARN_UNDECLARED_SELECTOR = YES; 310 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 311 | GCC_WARN_UNUSED_FUNCTION = YES; 312 | GCC_WARN_UNUSED_VARIABLE = YES; 313 | IPHONEOS_DEPLOYMENT_TARGET = 13.0; 314 | MTL_ENABLE_DEBUG_INFO = NO; 315 | MTL_FAST_MATH = YES; 316 | SDKROOT = iphoneos; 317 | SWIFT_COMPILATION_MODE = wholemodule; 318 | SWIFT_OPTIMIZATION_LEVEL = "-O"; 319 | VALIDATE_PRODUCT = YES; 320 | }; 321 | name = Release; 322 | }; 323 | C5E5198122A9C250001FD52C /* Debug */ = { 324 | isa = XCBuildConfiguration; 325 | buildSettings = { 326 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 327 | CODE_SIGN_STYLE = Automatic; 328 | DEVELOPMENT_ASSET_PATHS = "Contacts-SwiftUI/Preview\\ Content"; 329 | DEVELOPMENT_TEAM = TRB6J62PGA; 330 | ENABLE_PREVIEWS = YES; 331 | INFOPLIST_FILE = "Contacts-SwiftUI/Info.plist"; 332 | LD_RUNPATH_SEARCH_PATHS = ( 333 | "$(inherited)", 334 | "@executable_path/Frameworks", 335 | ); 336 | PRODUCT_BUNDLE_IDENTIFIER = "com.bobbyconti.Contacts-SwiftUI"; 337 | PRODUCT_NAME = "$(TARGET_NAME)"; 338 | SWIFT_VERSION = 5.0; 339 | TARGETED_DEVICE_FAMILY = "1,2"; 340 | }; 341 | name = Debug; 342 | }; 343 | C5E5198222A9C250001FD52C /* Release */ = { 344 | isa = XCBuildConfiguration; 345 | buildSettings = { 346 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 347 | CODE_SIGN_STYLE = Automatic; 348 | DEVELOPMENT_ASSET_PATHS = "Contacts-SwiftUI/Preview\\ Content"; 349 | DEVELOPMENT_TEAM = TRB6J62PGA; 350 | ENABLE_PREVIEWS = YES; 351 | INFOPLIST_FILE = "Contacts-SwiftUI/Info.plist"; 352 | LD_RUNPATH_SEARCH_PATHS = ( 353 | "$(inherited)", 354 | "@executable_path/Frameworks", 355 | ); 356 | PRODUCT_BUNDLE_IDENTIFIER = "com.bobbyconti.Contacts-SwiftUI"; 357 | PRODUCT_NAME = "$(TARGET_NAME)"; 358 | SWIFT_VERSION = 5.0; 359 | TARGETED_DEVICE_FAMILY = "1,2"; 360 | }; 361 | name = Release; 362 | }; 363 | /* End XCBuildConfiguration section */ 364 | 365 | /* Begin XCConfigurationList section */ 366 | C5E5196722A9C24F001FD52C /* Build configuration list for PBXProject "Contacts-SwiftUI" */ = { 367 | isa = XCConfigurationList; 368 | buildConfigurations = ( 369 | C5E5197E22A9C250001FD52C /* Debug */, 370 | C5E5197F22A9C250001FD52C /* Release */, 371 | ); 372 | defaultConfigurationIsVisible = 0; 373 | defaultConfigurationName = Release; 374 | }; 375 | C5E5198022A9C250001FD52C /* Build configuration list for PBXNativeTarget "Contacts-SwiftUI" */ = { 376 | isa = XCConfigurationList; 377 | buildConfigurations = ( 378 | C5E5198122A9C250001FD52C /* Debug */, 379 | C5E5198222A9C250001FD52C /* Release */, 380 | ); 381 | defaultConfigurationIsVisible = 0; 382 | defaultConfigurationName = Release; 383 | }; 384 | /* End XCConfigurationList section */ 385 | }; 386 | rootObject = C5E5196422A9C24F001FD52C /* Project object */; 387 | } 388 | -------------------------------------------------------------------------------- /Contacts-SwiftUI.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Contacts-SwiftUI.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Contacts-SwiftUI.xcodeproj/xcuserdata/bobby.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | SchemeUserState 6 | 7 | Contacts-SwiftUI.xcscheme_^#shared#^_ 8 | 9 | orderHint 10 | 0 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /Contacts-SwiftUI/AppDelegate.swift: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.swift 3 | // Contacts-SwiftUI 4 | // 5 | // Created by Bobby Conti on 6/6/19. 6 | // Copyright © 2019 Bobby Conti. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | @UIApplicationMain 12 | class AppDelegate: UIResponder, UIApplicationDelegate { 13 | 14 | 15 | 16 | func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool { 17 | // Override point for customization after application launch. 18 | return true 19 | } 20 | 21 | func applicationWillTerminate(_ application: UIApplication) { 22 | // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:. 23 | } 24 | 25 | // MARK: UISceneSession Lifecycle 26 | 27 | func application(_ application: UIApplication, configurationForConnecting connectingSceneSession: UISceneSession, options: UIScene.ConnectionOptions) -> UISceneConfiguration { 28 | // Called when a new scene session is being created. 29 | // Use this method to select a configuration to create the new scene with. 30 | return UISceneConfiguration(name: "Default Configuration", sessionRole: connectingSceneSession.role) 31 | } 32 | 33 | func application(_ application: UIApplication, didDiscardSceneSessions sceneSessions: Set) { 34 | // Called when the user discards a scene session. 35 | // If any sessions were discarded while the application was not running, this will be called shortly after application:didFinishLaunchingWithOptions. 36 | // Use this method to release any resources that were specific to the discarded scenes, as they will not return. 37 | } 38 | 39 | 40 | } 41 | 42 | -------------------------------------------------------------------------------- /Contacts-SwiftUI/Assets.xcassets/AlaniKahale.imageset/AlaniKahale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contirobert/Contacts-SwiftUI/853612950ce8dd85b9a1ead6cd066e7171c80696/Contacts-SwiftUI/Assets.xcassets/AlaniKahale.imageset/AlaniKahale.png -------------------------------------------------------------------------------- /Contacts-SwiftUI/Assets.xcassets/AlaniKahale.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "AlaniKahale.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Contacts-SwiftUI/Assets.xcassets/AlissaMurashev.imageset/AlissaMurashev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contirobert/Contacts-SwiftUI/853612950ce8dd85b9a1ead6cd066e7171c80696/Contacts-SwiftUI/Assets.xcassets/AlissaMurashev.imageset/AlissaMurashev.png -------------------------------------------------------------------------------- /Contacts-SwiftUI/Assets.xcassets/AlissaMurashev.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "AlissaMurashev.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Contacts-SwiftUI/Assets.xcassets/AmandaCarpenter.imageset/AmandaCarpenter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contirobert/Contacts-SwiftUI/853612950ce8dd85b9a1ead6cd066e7171c80696/Contacts-SwiftUI/Assets.xcassets/AmandaCarpenter.imageset/AmandaCarpenter.png -------------------------------------------------------------------------------- /Contacts-SwiftUI/Assets.xcassets/AmandaCarpenter.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "AmandaCarpenter.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Contacts-SwiftUI/Assets.xcassets/AmosHerring.imageset/AmosHerring.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contirobert/Contacts-SwiftUI/853612950ce8dd85b9a1ead6cd066e7171c80696/Contacts-SwiftUI/Assets.xcassets/AmosHerring.imageset/AmosHerring.png -------------------------------------------------------------------------------- /Contacts-SwiftUI/Assets.xcassets/AmosHerring.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "AmosHerring.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Contacts-SwiftUI/Assets.xcassets/AnaSalama.imageset/AnaSalama.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contirobert/Contacts-SwiftUI/853612950ce8dd85b9a1ead6cd066e7171c80696/Contacts-SwiftUI/Assets.xcassets/AnaSalama.imageset/AnaSalama.png -------------------------------------------------------------------------------- /Contacts-SwiftUI/Assets.xcassets/AnaSalama.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "AnaSalama.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Contacts-SwiftUI/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "iphone", 5 | "size" : "20x20", 6 | "scale" : "2x" 7 | }, 8 | { 9 | "idiom" : "iphone", 10 | "size" : "20x20", 11 | "scale" : "3x" 12 | }, 13 | { 14 | "idiom" : "iphone", 15 | "size" : "29x29", 16 | "scale" : "2x" 17 | }, 18 | { 19 | "idiom" : "iphone", 20 | "size" : "29x29", 21 | "scale" : "3x" 22 | }, 23 | { 24 | "idiom" : "iphone", 25 | "size" : "40x40", 26 | "scale" : "2x" 27 | }, 28 | { 29 | "idiom" : "iphone", 30 | "size" : "40x40", 31 | "scale" : "3x" 32 | }, 33 | { 34 | "idiom" : "iphone", 35 | "size" : "60x60", 36 | "scale" : "2x" 37 | }, 38 | { 39 | "idiom" : "iphone", 40 | "size" : "60x60", 41 | "scale" : "3x" 42 | }, 43 | { 44 | "idiom" : "ipad", 45 | "size" : "20x20", 46 | "scale" : "1x" 47 | }, 48 | { 49 | "idiom" : "ipad", 50 | "size" : "20x20", 51 | "scale" : "2x" 52 | }, 53 | { 54 | "idiom" : "ipad", 55 | "size" : "29x29", 56 | "scale" : "1x" 57 | }, 58 | { 59 | "idiom" : "ipad", 60 | "size" : "29x29", 61 | "scale" : "2x" 62 | }, 63 | { 64 | "idiom" : "ipad", 65 | "size" : "40x40", 66 | "scale" : "1x" 67 | }, 68 | { 69 | "idiom" : "ipad", 70 | "size" : "40x40", 71 | "scale" : "2x" 72 | }, 73 | { 74 | "idiom" : "ipad", 75 | "size" : "76x76", 76 | "scale" : "1x" 77 | }, 78 | { 79 | "idiom" : "ipad", 80 | "size" : "76x76", 81 | "scale" : "2x" 82 | }, 83 | { 84 | "idiom" : "ipad", 85 | "size" : "83.5x83.5", 86 | "scale" : "2x" 87 | }, 88 | { 89 | "idiom" : "ios-marketing", 90 | "size" : "1024x1024", 91 | "scale" : "1x" 92 | } 93 | ], 94 | "info" : { 95 | "version" : 1, 96 | "author" : "xcode" 97 | } 98 | } -------------------------------------------------------------------------------- /Contacts-SwiftUI/Assets.xcassets/AvinashSubramanian.imageset/AvinashSubramanian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contirobert/Contacts-SwiftUI/853612950ce8dd85b9a1ead6cd066e7171c80696/Contacts-SwiftUI/Assets.xcassets/AvinashSubramanian.imageset/AvinashSubramanian.png -------------------------------------------------------------------------------- /Contacts-SwiftUI/Assets.xcassets/AvinashSubramanian.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "AvinashSubramanian.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Contacts-SwiftUI/Assets.xcassets/CandiceBunkley.imageset/CandiceBunkley.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contirobert/Contacts-SwiftUI/853612950ce8dd85b9a1ead6cd066e7171c80696/Contacts-SwiftUI/Assets.xcassets/CandiceBunkley.imageset/CandiceBunkley.png -------------------------------------------------------------------------------- /Contacts-SwiftUI/Assets.xcassets/CandiceBunkley.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "CandiceBunkley.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Contacts-SwiftUI/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Contacts-SwiftUI/Assets.xcassets/DariusGalloway.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "DariusGalloway.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Contacts-SwiftUI/Assets.xcassets/DariusGalloway.imageset/DariusGalloway.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contirobert/Contacts-SwiftUI/853612950ce8dd85b9a1ead6cd066e7171c80696/Contacts-SwiftUI/Assets.xcassets/DariusGalloway.imageset/DariusGalloway.png -------------------------------------------------------------------------------- /Contacts-SwiftUI/Assets.xcassets/EdwardQuevedo.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "EdwardQuevedo.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Contacts-SwiftUI/Assets.xcassets/EdwardQuevedo.imageset/EdwardQuevedo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contirobert/Contacts-SwiftUI/853612950ce8dd85b9a1ead6cd066e7171c80696/Contacts-SwiftUI/Assets.xcassets/EdwardQuevedo.imageset/EdwardQuevedo.png -------------------------------------------------------------------------------- /Contacts-SwiftUI/Assets.xcassets/GregoryHester.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "GregoryHester.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Contacts-SwiftUI/Assets.xcassets/GregoryHester.imageset/GregoryHester.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contirobert/Contacts-SwiftUI/853612950ce8dd85b9a1ead6cd066e7171c80696/Contacts-SwiftUI/Assets.xcassets/GregoryHester.imageset/GregoryHester.png -------------------------------------------------------------------------------- /Contacts-SwiftUI/Assets.xcassets/HarpreetSingh.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "HarpreetSingh.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Contacts-SwiftUI/Assets.xcassets/HarpreetSingh.imageset/HarpreetSingh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contirobert/Contacts-SwiftUI/853612950ce8dd85b9a1ead6cd066e7171c80696/Contacts-SwiftUI/Assets.xcassets/HarpreetSingh.imageset/HarpreetSingh.png -------------------------------------------------------------------------------- /Contacts-SwiftUI/Assets.xcassets/HumayunKhan.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "HumayunKhan.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Contacts-SwiftUI/Assets.xcassets/HumayunKhan.imageset/HumayunKhan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contirobert/Contacts-SwiftUI/853612950ce8dd85b9a1ead6cd066e7171c80696/Contacts-SwiftUI/Assets.xcassets/HumayunKhan.imageset/HumayunKhan.png -------------------------------------------------------------------------------- /Contacts-SwiftUI/Assets.xcassets/JameelaAhmed.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "JameelaAhmed.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Contacts-SwiftUI/Assets.xcassets/JameelaAhmed.imageset/JameelaAhmed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contirobert/Contacts-SwiftUI/853612950ce8dd85b9a1ead6cd066e7171c80696/Contacts-SwiftUI/Assets.xcassets/JameelaAhmed.imageset/JameelaAhmed.png -------------------------------------------------------------------------------- /Contacts-SwiftUI/Assets.xcassets/JarrodStanford.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "JarrodStanford.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Contacts-SwiftUI/Assets.xcassets/JarrodStanford.imageset/JarrodStanford.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contirobert/Contacts-SwiftUI/853612950ce8dd85b9a1ead6cd066e7171c80696/Contacts-SwiftUI/Assets.xcassets/JarrodStanford.imageset/JarrodStanford.png -------------------------------------------------------------------------------- /Contacts-SwiftUI/Assets.xcassets/JeffreyCambry.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "JeffreyCambry.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Contacts-SwiftUI/Assets.xcassets/JeffreyCambry.imageset/JeffreyCambry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contirobert/Contacts-SwiftUI/853612950ce8dd85b9a1ead6cd066e7171c80696/Contacts-SwiftUI/Assets.xcassets/JeffreyCambry.imageset/JeffreyCambry.png -------------------------------------------------------------------------------- /Contacts-SwiftUI/Assets.xcassets/KatherineReese.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "KatherineReese.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Contacts-SwiftUI/Assets.xcassets/KatherineReese.imageset/KatherineReese.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contirobert/Contacts-SwiftUI/853612950ce8dd85b9a1ead6cd066e7171c80696/Contacts-SwiftUI/Assets.xcassets/KatherineReese.imageset/KatherineReese.png -------------------------------------------------------------------------------- /Contacts-SwiftUI/Assets.xcassets/LisaJennings.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "LisaJennings.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Contacts-SwiftUI/Assets.xcassets/LisaJennings.imageset/LisaJennings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contirobert/Contacts-SwiftUI/853612950ce8dd85b9a1ead6cd066e7171c80696/Contacts-SwiftUI/Assets.xcassets/LisaJennings.imageset/LisaJennings.png -------------------------------------------------------------------------------- /Contacts-SwiftUI/Assets.xcassets/MinhQuangTran.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "MinhQuangTran.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Contacts-SwiftUI/Assets.xcassets/MinhQuangTran.imageset/MinhQuangTran.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contirobert/Contacts-SwiftUI/853612950ce8dd85b9a1ead6cd066e7171c80696/Contacts-SwiftUI/Assets.xcassets/MinhQuangTran.imageset/MinhQuangTran.png -------------------------------------------------------------------------------- /Contacts-SwiftUI/Assets.xcassets/OdomTsuru.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "OdomTsuru.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Contacts-SwiftUI/Assets.xcassets/OdomTsuru.imageset/OdomTsuru.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contirobert/Contacts-SwiftUI/853612950ce8dd85b9a1ead6cd066e7171c80696/Contacts-SwiftUI/Assets.xcassets/OdomTsuru.imageset/OdomTsuru.png -------------------------------------------------------------------------------- /Contacts-SwiftUI/Assets.xcassets/PeterWeng.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "PeterWeng.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Contacts-SwiftUI/Assets.xcassets/PeterWeng.imageset/PeterWeng.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contirobert/Contacts-SwiftUI/853612950ce8dd85b9a1ead6cd066e7171c80696/Contacts-SwiftUI/Assets.xcassets/PeterWeng.imageset/PeterWeng.png -------------------------------------------------------------------------------- /Contacts-SwiftUI/Assets.xcassets/RicardoCintron.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "RicardoCintron.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Contacts-SwiftUI/Assets.xcassets/RicardoCintron.imageset/RicardoCintron.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contirobert/Contacts-SwiftUI/853612950ce8dd85b9a1ead6cd066e7171c80696/Contacts-SwiftUI/Assets.xcassets/RicardoCintron.imageset/RicardoCintron.png -------------------------------------------------------------------------------- /Contacts-SwiftUI/Assets.xcassets/SelinaMejia.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "SelinaMejia.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Contacts-SwiftUI/Assets.xcassets/SelinaMejia.imageset/SelinaMejia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contirobert/Contacts-SwiftUI/853612950ce8dd85b9a1ead6cd066e7171c80696/Contacts-SwiftUI/Assets.xcassets/SelinaMejia.imageset/SelinaMejia.png -------------------------------------------------------------------------------- /Contacts-SwiftUI/Assets.xcassets/StephanieVelasquez.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "StephanieVelasquez.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Contacts-SwiftUI/Assets.xcassets/StephanieVelasquez.imageset/StephanieVelasquez.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contirobert/Contacts-SwiftUI/853612950ce8dd85b9a1ead6cd066e7171c80696/Contacts-SwiftUI/Assets.xcassets/StephanieVelasquez.imageset/StephanieVelasquez.png -------------------------------------------------------------------------------- /Contacts-SwiftUI/Assets.xcassets/TayanitaPage.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "TayanitaPage.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Contacts-SwiftUI/Assets.xcassets/TayanitaPage.imageset/TayanitaPage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contirobert/Contacts-SwiftUI/853612950ce8dd85b9a1ead6cd066e7171c80696/Contacts-SwiftUI/Assets.xcassets/TayanitaPage.imageset/TayanitaPage.png -------------------------------------------------------------------------------- /Contacts-SwiftUI/Assets.xcassets/TobiasRay.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "TobiasRay.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Contacts-SwiftUI/Assets.xcassets/TobiasRay.imageset/TobiasRay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contirobert/Contacts-SwiftUI/853612950ce8dd85b9a1ead6cd066e7171c80696/Contacts-SwiftUI/Assets.xcassets/TobiasRay.imageset/TobiasRay.png -------------------------------------------------------------------------------- /Contacts-SwiftUI/Assets.xcassets/VictoriaBrown.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "VictoriaBrown.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Contacts-SwiftUI/Assets.xcassets/VictoriaBrown.imageset/VictoriaBrown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contirobert/Contacts-SwiftUI/853612950ce8dd85b9a1ead6cd066e7171c80696/Contacts-SwiftUI/Assets.xcassets/VictoriaBrown.imageset/VictoriaBrown.png -------------------------------------------------------------------------------- /Contacts-SwiftUI/Assets.xcassets/default.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "default.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Contacts-SwiftUI/Assets.xcassets/default.imageset/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contirobert/Contacts-SwiftUI/853612950ce8dd85b9a1ead6cd066e7171c80696/Contacts-SwiftUI/Assets.xcassets/default.imageset/default.png -------------------------------------------------------------------------------- /Contacts-SwiftUI/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /Contacts-SwiftUI/ContactsDB.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | id 7 | 0 8 | firstName 9 | Edward 10 | lastName 11 | Quevedo 12 | phoneNumber 13 | (283) 843-9772 14 | email 15 | edward@quevedo.me 16 | streetAddress 17 | 8785 Windfall St 18 | city 19 | Whitehall 20 | state 21 | PA 22 | zip 23 | 18052 24 | avatarName 25 | EdwardQuevedo 26 | 27 | 28 | id 29 | 1 30 | firstName 31 | Jameela 32 | lastName 33 | Ahmed 34 | phoneNumber 35 | (663) 646-4717 36 | email 37 | jameela@ahmed.me 38 | streetAddress 39 | 1 N. Cactus Ave. 40 | city 41 | Green Bay 42 | state 43 | WI 44 | zip 45 | 54302 46 | avatarName 47 | JameelaAhmed 48 | 49 | 50 | id 51 | 2 52 | firstName 53 | Lisa 54 | lastName 55 | Jennings 56 | phoneNumber 57 | (323) 789-1103 58 | email 59 | lisa@jennings.me 60 | streetAddress 61 | 711 Old York Drive 62 | city 63 | Richmond 64 | state 65 | VA 66 | zip 67 | 23223 68 | avatarName 69 | LisaJennings 70 | 71 | 72 | id 73 | 3 74 | firstName 75 | Peter 76 | lastName 77 | Weng 78 | phoneNumber 79 | (271) 844-9365 80 | email 81 | peter@weng.me 82 | streetAddress 83 | 77 Winchester Lane 84 | city 85 | Coachella 86 | state 87 | CA 88 | zip 89 | 92236 90 | avatarName 91 | PeterWeng 92 | 93 | 94 | id 95 | 4 96 | firstName 97 | Jarrod 98 | lastName 99 | Stanford 100 | phoneNumber 101 | (457) 213-9438 102 | email 103 | jarrod@stanford.me 104 | streetAddress 105 | 665 Clinton Lane 106 | city 107 | Wilkes Barre 108 | state 109 | PA 110 | zip 111 | 18702 112 | avatarName 113 | JarrodStanford 114 | 115 | 116 | id 117 | 5 118 | firstName 119 | Tayanita 120 | lastName 121 | Page 122 | phoneNumber 123 | (722) 279-7386 124 | email 125 | tayanita@page.me 126 | streetAddress 127 | 787 Lakeview St 128 | city 129 | Marion 130 | state 131 | NC 132 | zip 133 | 28752 134 | avatarName 135 | TayanitaPage 136 | 137 | 138 | id 139 | 6 140 | firstName 141 | Ricardo 142 | lastName 143 | Cintron 144 | phoneNumber 145 | (765) 874-0900 146 | email 147 | ricardo@cintron.me 148 | streetAddress 149 | 9013 Redwood Dr 150 | city 151 | Clemmons 152 | state 153 | NC 154 | zip 155 | 27012 156 | avatarName 157 | RicardoCintron 158 | 159 | 160 | id 161 | 7 162 | firstName 163 | Gregory 164 | lastName 165 | Hester 166 | phoneNumber 167 | (260) 793-0891 168 | email 169 | gregory@hester.me 170 | streetAddress 171 | 8880 W. Applegate St 172 | city 173 | Bemidji 174 | state 175 | MN 176 | zip 177 | 56601 178 | avatarName 179 | GregoryHester 180 | 181 | 182 | id 183 | 8 184 | firstName 185 | Ana 186 | lastName 187 | Salama 188 | phoneNumber 189 | (628) 938-0640 190 | email 191 | ana@salama.me 192 | streetAddress 193 | 59 Riverview St 194 | city 195 | North Fort Myers 196 | state 197 | FL 198 | zip 199 | 33917 200 | avatarName 201 | AnaSalama 202 | 203 | 204 | id 205 | 9 206 | firstName 207 | Amos 208 | lastName 209 | Herring 210 | phoneNumber 211 | (963) 252-8774 212 | email 213 | amos@herring.me 214 | streetAddress 215 | 9539 Rockaway Rd 216 | city 217 | Marlton 218 | state 219 | NJ 220 | zip 221 | 80531 222 | avatarName 223 | AmosHerring 224 | 225 | 226 | id 227 | 10 228 | firstName 229 | Katherine 230 | lastName 231 | Reese 232 | phoneNumber 233 | (686) 607-2888 234 | email 235 | katherine@reese.me 236 | streetAddress 237 | 3 Blackburn Street 238 | city 239 | Oshkosh 240 | state 241 | WI 242 | zip 243 | 54901 244 | avatarName 245 | KatherineReese 246 | 247 | 248 | id 249 | 11 250 | firstName 251 | Selina 252 | lastName 253 | Mejia 254 | phoneNumber 255 | (424) 439-2683 256 | email 257 | selina@mejia.me 258 | streetAddress 259 | 9409 Armstrong Rd 260 | city 261 | Dalton 262 | state 263 | GA 264 | zip 265 | 30721 266 | avatarName 267 | SelinaMejia 268 | 269 | 270 | id 271 | 12 272 | firstName 273 | Minh-Quang 274 | lastName 275 | Tran 276 | phoneNumber 277 | (404) 591-9192 278 | email 279 | minhq@tran.me 280 | streetAddress 281 | 7532 Old York Ave 282 | city 283 | Vernon Hills 284 | state 285 | IL 286 | zip 287 | 66061 288 | avatarName 289 | MinhQuangTran 290 | 291 | 292 | id 293 | 13 294 | firstName 295 | Tobias 296 | lastName 297 | Ray 298 | phoneNumber 299 | (601) 663-8062 300 | email 301 | tobias@ray.me 302 | streetAddress 303 | 7142B East Talbot Dr 304 | city 305 | Sevierville 306 | state 307 | TN 308 | zip 309 | 37876 310 | avatarName 311 | TobiasRay 312 | 313 | 314 | id 315 | 14 316 | firstName 317 | Alani 318 | lastName 319 | Kahale 320 | phoneNumber 321 | (688) 950-5888 322 | email 323 | alani@kahale.me 324 | streetAddress 325 | 463 Lakewood St 326 | city 327 | Stratford 328 | state 329 | CT 330 | zip 331 | 66142 332 | avatarName 333 | AlaniKahale 334 | 335 | 336 | id 337 | 15 338 | firstName 339 | Alissa 340 | lastName 341 | Murashev 342 | phoneNumber 343 | (991) 772-1273 344 | email 345 | alissa@murashev.me 346 | streetAddress 347 | 8120 Delaware St 348 | city 349 | San Lorenzo 350 | state 351 | CA 352 | zip 353 | 94580 354 | avatarName 355 | AlissaMurashev 356 | 357 | 358 | id 359 | 16 360 | firstName 361 | Odom 362 | lastName 363 | Tsuru 364 | phoneNumber 365 | (176) 297-7766 366 | email 367 | odom@tsuru.me 368 | streetAddress 369 | 8739 Bald Hill Drive 370 | city 371 | Chandler 372 | state 373 | AZ 374 | zip 375 | 85224 376 | avatarName 377 | OdomTsuru 378 | 379 | 380 | id 381 | 17 382 | firstName 383 | Candice 384 | lastName 385 | Bunkley 386 | phoneNumber 387 | (149) 934-1553 388 | email 389 | candice@bunkley.me 390 | streetAddress 391 | 9549 Tower Rd 392 | city 393 | Lake Charles 394 | state 395 | LA 396 | zip 397 | 70605 398 | avatarName 399 | CandiceBunkley 400 | 401 | 402 | id 403 | 18 404 | firstName 405 | Avinash 406 | lastName 407 | Subramanian 408 | phoneNumber 409 | (516) 595-5887 410 | email 411 | avinash@subramanian.me 412 | streetAddress 413 | 9963 King Street 414 | city 415 | Jackson Heights 416 | state 417 | NY 418 | zip 419 | 11372 420 | avatarName 421 | AvinashSubramanian 422 | 423 | 424 | id 425 | 19 426 | firstName 427 | Harpreet 428 | lastName 429 | Singh 430 | phoneNumber 431 | (611) 519-3547 432 | email 433 | harpreet@singh.me 434 | streetAddress 435 | 930 Arcadia Street 436 | city 437 | Saint Louis 438 | state 439 | MO 440 | zip 441 | 63109 442 | avatarName 443 | HarpreetSingh 444 | 445 | 446 | id 447 | 20 448 | firstName 449 | Amanda 450 | lastName 451 | Carpenter 452 | phoneNumber 453 | (461) 797-8785 454 | email 455 | amanda@carpenter.me 456 | streetAddress 457 | 9968 Windfall Drive 458 | city 459 | Elyria 460 | state 461 | OH 462 | zip 463 | 44035 464 | avatarName 465 | AmandaCarpenter 466 | 467 | 468 | id 469 | 21 470 | firstName 471 | Victoria 472 | lastName 473 | Brown 474 | phoneNumber 475 | (655) 126-5746 476 | email 477 | victoria@brown.me 478 | streetAddress 479 | 7520 Union St 480 | city 481 | New Bedford 482 | state 483 | MA 484 | zip 485 | 27405 486 | avatarName 487 | VictoriaBrown 488 | 489 | 490 | id 491 | 22 492 | firstName 493 | Stephanie 494 | lastName 495 | Velasquez 496 | phoneNumber 497 | (213) 839-5544 498 | email 499 | stephanie@velasquez.me 500 | streetAddress 501 | 8549 Hilltop St 502 | city 503 | Wyoming 504 | state 505 | MI 506 | zip 507 | 49509 508 | avatarName 509 | StephanieVelasquez 510 | 511 | 512 | id 513 | 23 514 | firstName 515 | Darius 516 | lastName 517 | Galloway 518 | phoneNumber 519 | (675) 976-7230 520 | email 521 | darius@galloway.me 522 | streetAddress 523 | 8 Ann St 524 | city 525 | Fairhope 526 | state 527 | AL 528 | zip 529 | 36532 530 | avatarName 531 | DariusGalloway 532 | 533 | 534 | id 535 | 24 536 | firstName 537 | Jeffrey 538 | lastName 539 | Cambry 540 | phoneNumber 541 | (574) 700-2528 542 | email 543 | jeffrey@cambry.me 544 | streetAddress 545 | 22 Heritage Ave 546 | city 547 | Garland 548 | state 549 | TX 550 | zip 551 | 75043 552 | avatarName 553 | JeffreyCambry 554 | 555 | 556 | id 557 | 25 558 | firstName 559 | Humayun 560 | lastName 561 | Khan 562 | phoneNumber 563 | (392) 877-7199 564 | email 565 | humayun@khan.me 566 | streetAddress 567 | 7726 Glen Creek Street 568 | city 569 | Kingston 570 | state 571 | NY 572 | zip 573 | 12401 574 | avatarName 575 | DariusGalloway 576 | 577 | 578 | 579 | -------------------------------------------------------------------------------- /Contacts-SwiftUI/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | $(DEVELOPMENT_LANGUAGE) 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | $(PRODUCT_BUNDLE_PACKAGE_TYPE) 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleVersion 20 | 1 21 | LSRequiresIPhoneOS 22 | 23 | UIApplicationSceneManifest 24 | 25 | UIApplicationSupportsMultipleScenes 26 | 27 | UISceneConfigurations 28 | 29 | UIWindowSceneSessionRoleApplication 30 | 31 | 32 | UILaunchStoryboardName 33 | LaunchScreen 34 | UISceneConfigurationName 35 | Default Configuration 36 | UISceneDelegateClassName 37 | $(PRODUCT_MODULE_NAME).SceneDelegate 38 | 39 | 40 | 41 | 42 | UILaunchStoryboardName 43 | LaunchScreen 44 | UIRequiredDeviceCapabilities 45 | 46 | armv7 47 | 48 | UISupportedInterfaceOrientations 49 | 50 | UIInterfaceOrientationPortrait 51 | UIInterfaceOrientationLandscapeLeft 52 | UIInterfaceOrientationLandscapeRight 53 | 54 | UISupportedInterfaceOrientations~ipad 55 | 56 | UIInterfaceOrientationPortrait 57 | UIInterfaceOrientationPortraitUpsideDown 58 | UIInterfaceOrientationLandscapeLeft 59 | UIInterfaceOrientationLandscapeRight 60 | 61 | 62 | 63 | -------------------------------------------------------------------------------- /Contacts-SwiftUI/Model/Contact.swift: -------------------------------------------------------------------------------- 1 | // 2 | // Contact.swift 3 | // Contacts-SwiftUI 4 | // 5 | // Created by Bobby Conti on 4/26/19. 6 | // Copyright © 2019 Bobby Conti. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | import SwiftUI 11 | 12 | // Contact Data Model 13 | struct Contact: Hashable, Identifiable { 14 | let id: Int 15 | let firstName: String 16 | let lastName: String 17 | let phone: String 18 | let email: String 19 | let street: String 20 | let city: String 21 | let state: String 22 | let zip: String 23 | let imageName: String 24 | var isFavorite: Bool 25 | } 26 | 27 | // Extends Contact to build dictionary of contact info from plist 28 | extension Contact { 29 | 30 | struct Key { 31 | static let id = "id" 32 | static let firstName = "firstName" 33 | static let lastName = "lastName" 34 | static let phone = "phoneNumber" 35 | static let email = "email" 36 | static let street = "streetAddress" 37 | static let city = "city" 38 | static let state = "state" 39 | static let zip = "zip" 40 | static let imageName = "avatarName" 41 | } 42 | 43 | init?(dictionary: [String: String]) { 44 | guard let idNumber = dictionary[Key.id], 45 | let firstNameString = dictionary[Key.firstName], 46 | let lastNameString = dictionary[Key.lastName], 47 | let phoneString = dictionary[Key.phone], 48 | let emailString = dictionary[Key.email], 49 | let streetString = dictionary[Key.street], 50 | let cityString = dictionary[Key.city], 51 | let stateString = dictionary[Key.state], 52 | let zipString = dictionary[Key.zip] else { return nil } 53 | 54 | self.id = Int(idNumber)! 55 | self.firstName = firstNameString 56 | self.lastName = lastNameString 57 | self.phone = phoneString 58 | self.email = emailString 59 | self.street = streetString 60 | self.city = cityString 61 | self.state = stateString 62 | self.zip = zipString 63 | 64 | if let imageName = dictionary[Key.imageName] { 65 | self.imageName = imageName 66 | } else { 67 | self.imageName = "Default" 68 | } 69 | 70 | isFavorite = false 71 | } 72 | } 73 | 74 | // Extends Contact to return first letter of first name to sort list of contacts 75 | extension Contact { 76 | var firstLetterForSort: String { 77 | return String(firstName.first!).uppercased() 78 | } 79 | } 80 | -------------------------------------------------------------------------------- /Contacts-SwiftUI/Model/Data.swift: -------------------------------------------------------------------------------- 1 | // 2 | // Data.swift 3 | // Contacts-SwiftUI 4 | // 5 | // Created by Bobby Conti on 4/26/19. 6 | // Copyright © 2019 Bobby Conti. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | 11 | let contactData: [Contact] = ContactsSource.contacts.sorted(by: { $0.firstName < $1.firstName }) 12 | 13 | // Loads data model with contact info from plist 14 | class ContactsSource { 15 | static var contacts: [Contact] { 16 | let data = try! PlistLoader.array(fromFile: "ContactsDB", ofType: "plist") 17 | return data.compactMap { Contact(dictionary: $0) } 18 | } 19 | } 20 | 21 | class PlistLoader { 22 | static func array(fromFile name: String, ofType type: String) throws -> [[String: String]] { 23 | guard let path = Bundle.main.path(forResource: name, ofType: type) else { 24 | throw PlistError.invalidResource 25 | } 26 | 27 | guard let array = NSArray(contentsOfFile: path) as? [[String: String]] else { 28 | throw PlistError.parsingFailure 29 | } 30 | 31 | return array 32 | } 33 | } 34 | 35 | enum PlistError: Error { 36 | case invalidResource 37 | case parsingFailure 38 | } 39 | 40 | // Extends ContactsSource to return arrays of section titles and sorted contacts 41 | /* 42 | extension ContactsSource { 43 | static var sortedUniqueFirstLetters: [String] { 44 | let firstLetters = contacts.map { $0.firstLetterForSort } 45 | let uniqueFirstLetters = Set(firstLetters) 46 | return Array(uniqueFirstLetters).sorted() 47 | } 48 | 49 | static var sectionedContacts: [[Contact]] { 50 | return sortedUniqueFirstLetters.map { firstLetter in 51 | let filteredContacts = contacts.filter { $0.firstLetterForSort == firstLetter } 52 | return filteredContacts.sorted(by: { $0.firstName < $1.firstName }) 53 | } 54 | } 55 | } 56 | */ 57 | -------------------------------------------------------------------------------- /Contacts-SwiftUI/Model/UserData.swift: -------------------------------------------------------------------------------- 1 | // 2 | // UserData.swift 3 | // Contacts-SwiftUI 4 | // 5 | // Created by Bobby Conti on 6/8/19. 6 | // Copyright © 2019 Bobby Conti. All rights reserved. 7 | // 8 | 9 | import SwiftUI 10 | import Combine 11 | 12 | final class UserData: BindableObject { 13 | let didChange = PassthroughSubject() 14 | 15 | var contacts = contactData { 16 | didSet { 17 | didChange.send(self) 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /Contacts-SwiftUI/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Contacts-SwiftUI/SceneDelegate.swift: -------------------------------------------------------------------------------- 1 | // 2 | // SceneDelegate.swift 3 | // Contacts-SwiftUI 4 | // 5 | // Created by Bobby Conti on 6/6/19. 6 | // Copyright © 2019 Bobby Conti. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | import SwiftUI 11 | 12 | class SceneDelegate: UIResponder, UIWindowSceneDelegate { 13 | 14 | var window: UIWindow? 15 | 16 | 17 | func scene(_ scene: UIScene, willConnectTo session: UISceneSession, options connectionOptions: UIScene.ConnectionOptions) { 18 | // Use this method to optionally configure and attach the UIWindow `window` to the provided UIWindowScene `scene`. 19 | // If using a storyboard, the `window` property will automatically be initialized and attached to the scene. 20 | // This delegate does not imply the connecting scene or session are new (see `application:configurationForConnectingSceneSession` instead). 21 | 22 | // Use a UIHostingController as window root view controller 23 | let window = UIWindow(frame: UIScreen.main.bounds) 24 | window.rootViewController = UIHostingController( 25 | rootView: ContactList() 26 | .environmentObject(UserData()) 27 | ) 28 | self.window = window 29 | window.makeKeyAndVisible() 30 | } 31 | 32 | func sceneDidDisconnect(_ scene: UIScene) { 33 | // Called as the scene is being released by the system. 34 | // This occurs shortly after the scene enters the background, or when its session is discarded. 35 | // Release any resources associated with this scene that can be re-created the next time the scene connects. 36 | // The scene may re-connect later, as its session was not neccessarily discarded (see `application:didDiscardSceneSessions` instead). 37 | } 38 | 39 | func sceneDidBecomeActive(_ scene: UIScene) { 40 | // Called when the scene has moved from an inactive state to an active state. 41 | // Use this method to restart any tasks that were paused (or not yet started) when the scene was inactive. 42 | } 43 | 44 | func sceneWillResignActive(_ scene: UIScene) { 45 | // Called when the scene will move from an active state to an inactive state. 46 | // This may occur due to temporary interruptions (ex. an incoming phone call). 47 | } 48 | 49 | func sceneWillEnterForeground(_ scene: UIScene) { 50 | // Called as the scene transitions from the background to the foreground. 51 | // Use this method to undo the changes made on entering the background. 52 | } 53 | 54 | func sceneDidEnterBackground(_ scene: UIScene) { 55 | // Called as the scene transitions from the foreground to the background. 56 | // Use this method to save data, release shared resources, and store enough scene-specific state information 57 | // to restore the scene back to its current state. 58 | } 59 | 60 | 61 | } 62 | 63 | -------------------------------------------------------------------------------- /Contacts-SwiftUI/View/ContactDetail.swift: -------------------------------------------------------------------------------- 1 | // 2 | // ContactDetail.swift 3 | // Contacts-SwiftUI 4 | // 5 | // Created by Bobby Conti on 6/8/19. 6 | // Copyright © 2019 Bobby Conti. All rights reserved. 7 | // 8 | 9 | import SwiftUI 10 | 11 | struct ContactDetail : View { 12 | @EnvironmentObject var userData: UserData 13 | var contact: Contact 14 | 15 | var contactIndex: Int { 16 | userData.contacts.firstIndex(where: { $0.id == contact.id })! 17 | } 18 | 19 | var body: some View { 20 | VStack { 21 | Image(contact.imageName) 22 | .resizable() 23 | .clipShape(Circle()) 24 | .frame(width: 200, height: 200) 25 | .overlay(Circle().stroke(Color.white, lineWidth: 4)) 26 | .shadow(radius: 10) 27 | 28 | HStack { 29 | Text("\(contact.firstName) \(contact.lastName)") 30 | .font(.largeTitle) 31 | 32 | Button(action: { self.userData.contacts[self.contactIndex].isFavorite.toggle() }) { 33 | if self.userData.contacts[self.contactIndex].isFavorite { 34 | Image(systemName: "star.fill") 35 | .font(.headline) 36 | .foregroundColor(.yellow) 37 | } else { 38 | Image(systemName: "star") 39 | .font(.headline) 40 | .foregroundColor(.gray) 41 | } 42 | } 43 | } 44 | 45 | HStack { 46 | Text("Phone") 47 | Spacer() 48 | Text(contact.phone).color(.gray) 49 | }.padding(.bottom, 5) 50 | 51 | HStack { 52 | Text("Email") 53 | Spacer() 54 | Text(contact.email).color(.gray) 55 | }.padding(.bottom, 5) 56 | 57 | HStack { 58 | Text("Address") 59 | Spacer() 60 | 61 | VStack(alignment: .trailing) { 62 | Text(contact.street).color(.gray) 63 | Text("\(contact.city), \(contact.state) \(contact.zip)").color(.gray) 64 | } 65 | }.padding(.bottom, 5) 66 | 67 | Spacer() 68 | }.padding(40) 69 | } 70 | } 71 | -------------------------------------------------------------------------------- /Contacts-SwiftUI/View/ContactList.swift: -------------------------------------------------------------------------------- 1 | // 2 | // ContactList.swift 3 | // Contacts-SwiftUI 4 | // 5 | // Created by Bobby Conti on 6/6/19. 6 | // Copyright © 2019 Bobby Conti. All rights reserved. 7 | // 8 | 9 | import SwiftUI 10 | 11 | struct ContactList : View { 12 | @EnvironmentObject var userData: UserData 13 | 14 | var body: some View { 15 | NavigationView { 16 | List(userData.contacts) { contact in 17 | NavigationButton(destination: ContactDetail(contact: contact)) { 18 | ContactRow(contact: contact) 19 | } 20 | }.navigationBarTitle(Text("Contacts")) 21 | } 22 | } 23 | } 24 | 25 | #if DEBUG 26 | struct ContentView_Previews : PreviewProvider { 27 | static var previews: some View { 28 | ContactList() 29 | .environmentObject(UserData()) 30 | } 31 | } 32 | #endif 33 | -------------------------------------------------------------------------------- /Contacts-SwiftUI/View/ContactRow.swift: -------------------------------------------------------------------------------- 1 | // 2 | // ContactRow.swift 3 | // Contacts-SwiftUI 4 | // 5 | // Created by Bobby Conti on 6/8/19. 6 | // Copyright © 2019 Bobby Conti. All rights reserved. 7 | // 8 | 9 | import SwiftUI 10 | 11 | struct ContactRow : View { 12 | let contact: Contact 13 | 14 | var body: some View { 15 | HStack { 16 | Image(contact.imageName) 17 | .resizable() 18 | .clipShape(Circle()) 19 | .frame(width: 60, height: 60) 20 | .clipped() 21 | 22 | VStack(alignment: .leading) { 23 | Text("\(contact.firstName) \(contact.lastName)").font(.headline) 24 | Text(contact.city).font(.subheadline) 25 | } 26 | 27 | Spacer() 28 | 29 | if contact.isFavorite { 30 | Image(systemName: "star.fill") 31 | .font(.headline) 32 | .foregroundColor(.yellow) 33 | } 34 | } 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Contacts-SwiftUI 2 | 3 |
4 | 5 | 6 | 7 |
8 | 9 | ## Overview 10 | 11 | Contacts-SwiftUI is a contacts app built using SwiftUI! Scroll through a dynamic list of contacts, bring up detail views with contact info, and mark contacts as favorites! The app incorporates: 12 | 13 | - SwiftUI 14 | - Bindable Objects 15 | - Navigation Views and Buttons 16 | - Lists and Stacks 17 | - Images and Text 18 | - Plists 19 | 20 | ## Custom Features 21 | 22 | Additional features were added to the original functionality of the app, including: 23 | 24 | - Dynamic UI using SwiftUI 25 | - Circular Contact Photos with Shadow 26 | 27 | ## Getting Started 28 | 29 | > This app is not available on the App Store. 30 | 31 | ### Prerequisites 32 | 33 | - A Mac running macOS Catalina (beta) 34 | - Xcode 11 (beta) 35 | 36 | ### Installation 37 | 38 | 1. Clone or download the project to your local machine 39 | 2. Open the project in Xcode 40 | 3. Run the simulator 41 | 42 | ## Acknowledgements 43 | 44 | The following resources were used in the development of this project. All custom code is my own. 45 | 46 | - [Introduction to Table Views](https://teamtreehouse.com/library/introduction-to-table-views) 47 | - [SwiftUI Essentials: Handling User Input](https://developer.apple.com/tutorials/swiftui/handling-user-input) 48 | 49 | Interested in learning more about iOS Development? [Sign up today](http://referrals.trhou.se/bobbyconti1)! 50 | -------------------------------------------------------------------------------- /screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contirobert/Contacts-SwiftUI/853612950ce8dd85b9a1ead6cd066e7171c80696/screenshot1.png -------------------------------------------------------------------------------- /screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contirobert/Contacts-SwiftUI/853612950ce8dd85b9a1ead6cd066e7171c80696/screenshot2.png -------------------------------------------------------------------------------- /screenshot3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/contirobert/Contacts-SwiftUI/853612950ce8dd85b9a1ead6cd066e7171c80696/screenshot3.png --------------------------------------------------------------------------------