├── LCOMockTest.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcuserdata │ └── lco.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist ├── LCOMockTest ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ ├── mt-1.imageset │ │ ├── Contents.json │ │ └── mt-1.png │ ├── mt-10.imageset │ │ ├── Contents.json │ │ └── mt-10.png │ ├── mt-2.imageset │ │ ├── Contents.json │ │ └── mt-2.png │ ├── mt-3.imageset │ │ ├── Contents.json │ │ └── mt-3.png │ ├── mt-4.imageset │ │ ├── Contents.json │ │ └── mt-4.png │ ├── mt-5.imageset │ │ ├── Contents.json │ │ └── mt-5.png │ ├── mt-6.imageset │ │ ├── Contents.json │ │ └── mt-6.png │ ├── mt-7.imageset │ │ ├── Contents.json │ │ └── mt-7.png │ ├── mt-8.imageset │ │ ├── Contents.json │ │ └── mt-8.png │ └── mt-9.imageset │ │ ├── Contents.json │ │ └── mt-9.png ├── ContentView.swift ├── Info.plist ├── LCOMockTestApp.swift ├── MockTest.swift ├── MockTestDetailView.swift └── Preview Content │ └── Preview Assets.xcassets │ └── Contents.json ├── README.md ├── mt-1.png ├── mt-10.png ├── mt-2.png ├── mt-3.png ├── mt-4.png ├── mt-5.png ├── mt-6.png ├── mt-7.png ├── mt-8.png └── mt-9.png /LCOMockTest.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 50; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 732649BA2688645F002B8467 /* LCOMockTestApp.swift in Sources */ = {isa = PBXBuildFile; fileRef = 732649B92688645F002B8467 /* LCOMockTestApp.swift */; }; 11 | 732649BC2688645F002B8467 /* ContentView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 732649BB2688645F002B8467 /* ContentView.swift */; }; 12 | 732649BE26886461002B8467 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 732649BD26886461002B8467 /* Assets.xcassets */; }; 13 | 732649C126886461002B8467 /* Preview Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 732649C026886461002B8467 /* Preview Assets.xcassets */; }; 14 | 732649C926886788002B8467 /* MockTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 732649C826886788002B8467 /* MockTest.swift */; }; 15 | 732649CB26886B1F002B8467 /* MockTestDetailView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 732649CA26886B1F002B8467 /* MockTestDetailView.swift */; }; 16 | /* End PBXBuildFile section */ 17 | 18 | /* Begin PBXFileReference section */ 19 | 732649B62688645F002B8467 /* LCOMockTest.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = LCOMockTest.app; sourceTree = BUILT_PRODUCTS_DIR; }; 20 | 732649B92688645F002B8467 /* LCOMockTestApp.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LCOMockTestApp.swift; sourceTree = ""; }; 21 | 732649BB2688645F002B8467 /* ContentView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ContentView.swift; sourceTree = ""; }; 22 | 732649BD26886461002B8467 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; 23 | 732649C026886461002B8467 /* Preview Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = "Preview Assets.xcassets"; sourceTree = ""; }; 24 | 732649C226886461002B8467 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 25 | 732649C826886788002B8467 /* MockTest.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MockTest.swift; sourceTree = ""; }; 26 | 732649CA26886B1F002B8467 /* MockTestDetailView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MockTestDetailView.swift; sourceTree = ""; }; 27 | /* End PBXFileReference section */ 28 | 29 | /* Begin PBXFrameworksBuildPhase section */ 30 | 732649B32688645F002B8467 /* Frameworks */ = { 31 | isa = PBXFrameworksBuildPhase; 32 | buildActionMask = 2147483647; 33 | files = ( 34 | ); 35 | runOnlyForDeploymentPostprocessing = 0; 36 | }; 37 | /* End PBXFrameworksBuildPhase section */ 38 | 39 | /* Begin PBXGroup section */ 40 | 732649AD2688645F002B8467 = { 41 | isa = PBXGroup; 42 | children = ( 43 | 732649B82688645F002B8467 /* LCOMockTest */, 44 | 732649B72688645F002B8467 /* Products */, 45 | ); 46 | sourceTree = ""; 47 | }; 48 | 732649B72688645F002B8467 /* Products */ = { 49 | isa = PBXGroup; 50 | children = ( 51 | 732649B62688645F002B8467 /* LCOMockTest.app */, 52 | ); 53 | name = Products; 54 | sourceTree = ""; 55 | }; 56 | 732649B82688645F002B8467 /* LCOMockTest */ = { 57 | isa = PBXGroup; 58 | children = ( 59 | 732649B92688645F002B8467 /* LCOMockTestApp.swift */, 60 | 732649BB2688645F002B8467 /* ContentView.swift */, 61 | 732649BD26886461002B8467 /* Assets.xcassets */, 62 | 732649C226886461002B8467 /* Info.plist */, 63 | 732649BF26886461002B8467 /* Preview Content */, 64 | 732649C826886788002B8467 /* MockTest.swift */, 65 | 732649CA26886B1F002B8467 /* MockTestDetailView.swift */, 66 | ); 67 | path = LCOMockTest; 68 | sourceTree = ""; 69 | }; 70 | 732649BF26886461002B8467 /* Preview Content */ = { 71 | isa = PBXGroup; 72 | children = ( 73 | 732649C026886461002B8467 /* Preview Assets.xcassets */, 74 | ); 75 | path = "Preview Content"; 76 | sourceTree = ""; 77 | }; 78 | /* End PBXGroup section */ 79 | 80 | /* Begin PBXNativeTarget section */ 81 | 732649B52688645F002B8467 /* LCOMockTest */ = { 82 | isa = PBXNativeTarget; 83 | buildConfigurationList = 732649C526886461002B8467 /* Build configuration list for PBXNativeTarget "LCOMockTest" */; 84 | buildPhases = ( 85 | 732649B22688645F002B8467 /* Sources */, 86 | 732649B32688645F002B8467 /* Frameworks */, 87 | 732649B42688645F002B8467 /* Resources */, 88 | ); 89 | buildRules = ( 90 | ); 91 | dependencies = ( 92 | ); 93 | name = LCOMockTest; 94 | productName = LCOMockTest; 95 | productReference = 732649B62688645F002B8467 /* LCOMockTest.app */; 96 | productType = "com.apple.product-type.application"; 97 | }; 98 | /* End PBXNativeTarget section */ 99 | 100 | /* Begin PBXProject section */ 101 | 732649AE2688645F002B8467 /* Project object */ = { 102 | isa = PBXProject; 103 | attributes = { 104 | LastSwiftUpdateCheck = 1250; 105 | LastUpgradeCheck = 1250; 106 | TargetAttributes = { 107 | 732649B52688645F002B8467 = { 108 | CreatedOnToolsVersion = 12.5.1; 109 | }; 110 | }; 111 | }; 112 | buildConfigurationList = 732649B12688645F002B8467 /* Build configuration list for PBXProject "LCOMockTest" */; 113 | compatibilityVersion = "Xcode 9.3"; 114 | developmentRegion = en; 115 | hasScannedForEncodings = 0; 116 | knownRegions = ( 117 | en, 118 | Base, 119 | ); 120 | mainGroup = 732649AD2688645F002B8467; 121 | productRefGroup = 732649B72688645F002B8467 /* Products */; 122 | projectDirPath = ""; 123 | projectRoot = ""; 124 | targets = ( 125 | 732649B52688645F002B8467 /* LCOMockTest */, 126 | ); 127 | }; 128 | /* End PBXProject section */ 129 | 130 | /* Begin PBXResourcesBuildPhase section */ 131 | 732649B42688645F002B8467 /* Resources */ = { 132 | isa = PBXResourcesBuildPhase; 133 | buildActionMask = 2147483647; 134 | files = ( 135 | 732649C126886461002B8467 /* Preview Assets.xcassets in Resources */, 136 | 732649BE26886461002B8467 /* Assets.xcassets in Resources */, 137 | ); 138 | runOnlyForDeploymentPostprocessing = 0; 139 | }; 140 | /* End PBXResourcesBuildPhase section */ 141 | 142 | /* Begin PBXSourcesBuildPhase section */ 143 | 732649B22688645F002B8467 /* Sources */ = { 144 | isa = PBXSourcesBuildPhase; 145 | buildActionMask = 2147483647; 146 | files = ( 147 | 732649BC2688645F002B8467 /* ContentView.swift in Sources */, 148 | 732649BA2688645F002B8467 /* LCOMockTestApp.swift in Sources */, 149 | 732649C926886788002B8467 /* MockTest.swift in Sources */, 150 | 732649CB26886B1F002B8467 /* MockTestDetailView.swift in Sources */, 151 | ); 152 | runOnlyForDeploymentPostprocessing = 0; 153 | }; 154 | /* End PBXSourcesBuildPhase section */ 155 | 156 | /* Begin XCBuildConfiguration section */ 157 | 732649C326886461002B8467 /* Debug */ = { 158 | isa = XCBuildConfiguration; 159 | buildSettings = { 160 | ALWAYS_SEARCH_USER_PATHS = NO; 161 | CLANG_ANALYZER_NONNULL = YES; 162 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; 163 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; 164 | CLANG_CXX_LIBRARY = "libc++"; 165 | CLANG_ENABLE_MODULES = YES; 166 | CLANG_ENABLE_OBJC_ARC = YES; 167 | CLANG_ENABLE_OBJC_WEAK = YES; 168 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 169 | CLANG_WARN_BOOL_CONVERSION = YES; 170 | CLANG_WARN_COMMA = YES; 171 | CLANG_WARN_CONSTANT_CONVERSION = YES; 172 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 173 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 174 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 175 | CLANG_WARN_EMPTY_BODY = YES; 176 | CLANG_WARN_ENUM_CONVERSION = YES; 177 | CLANG_WARN_INFINITE_RECURSION = YES; 178 | CLANG_WARN_INT_CONVERSION = YES; 179 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 180 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 181 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 182 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 183 | CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; 184 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 185 | CLANG_WARN_STRICT_PROTOTYPES = YES; 186 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 187 | CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; 188 | CLANG_WARN_UNREACHABLE_CODE = YES; 189 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 190 | COPY_PHASE_STRIP = NO; 191 | DEBUG_INFORMATION_FORMAT = dwarf; 192 | ENABLE_STRICT_OBJC_MSGSEND = YES; 193 | ENABLE_TESTABILITY = YES; 194 | GCC_C_LANGUAGE_STANDARD = gnu11; 195 | GCC_DYNAMIC_NO_PIC = NO; 196 | GCC_NO_COMMON_BLOCKS = YES; 197 | GCC_OPTIMIZATION_LEVEL = 0; 198 | GCC_PREPROCESSOR_DEFINITIONS = ( 199 | "DEBUG=1", 200 | "$(inherited)", 201 | ); 202 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 203 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 204 | GCC_WARN_UNDECLARED_SELECTOR = YES; 205 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 206 | GCC_WARN_UNUSED_FUNCTION = YES; 207 | GCC_WARN_UNUSED_VARIABLE = YES; 208 | IPHONEOS_DEPLOYMENT_TARGET = 14.5; 209 | MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; 210 | MTL_FAST_MATH = YES; 211 | ONLY_ACTIVE_ARCH = YES; 212 | SDKROOT = iphoneos; 213 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; 214 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 215 | }; 216 | name = Debug; 217 | }; 218 | 732649C426886461002B8467 /* Release */ = { 219 | isa = XCBuildConfiguration; 220 | buildSettings = { 221 | ALWAYS_SEARCH_USER_PATHS = NO; 222 | CLANG_ANALYZER_NONNULL = YES; 223 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; 224 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; 225 | CLANG_CXX_LIBRARY = "libc++"; 226 | CLANG_ENABLE_MODULES = YES; 227 | CLANG_ENABLE_OBJC_ARC = YES; 228 | CLANG_ENABLE_OBJC_WEAK = YES; 229 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 230 | CLANG_WARN_BOOL_CONVERSION = YES; 231 | CLANG_WARN_COMMA = YES; 232 | CLANG_WARN_CONSTANT_CONVERSION = YES; 233 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 234 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 235 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 236 | CLANG_WARN_EMPTY_BODY = YES; 237 | CLANG_WARN_ENUM_CONVERSION = YES; 238 | CLANG_WARN_INFINITE_RECURSION = YES; 239 | CLANG_WARN_INT_CONVERSION = YES; 240 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 241 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 242 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 243 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 244 | CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; 245 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 246 | CLANG_WARN_STRICT_PROTOTYPES = YES; 247 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 248 | CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; 249 | CLANG_WARN_UNREACHABLE_CODE = YES; 250 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 251 | COPY_PHASE_STRIP = NO; 252 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 253 | ENABLE_NS_ASSERTIONS = NO; 254 | ENABLE_STRICT_OBJC_MSGSEND = YES; 255 | GCC_C_LANGUAGE_STANDARD = gnu11; 256 | GCC_NO_COMMON_BLOCKS = YES; 257 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 258 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 259 | GCC_WARN_UNDECLARED_SELECTOR = YES; 260 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 261 | GCC_WARN_UNUSED_FUNCTION = YES; 262 | GCC_WARN_UNUSED_VARIABLE = YES; 263 | IPHONEOS_DEPLOYMENT_TARGET = 14.5; 264 | MTL_ENABLE_DEBUG_INFO = NO; 265 | MTL_FAST_MATH = YES; 266 | SDKROOT = iphoneos; 267 | SWIFT_COMPILATION_MODE = wholemodule; 268 | SWIFT_OPTIMIZATION_LEVEL = "-O"; 269 | VALIDATE_PRODUCT = YES; 270 | }; 271 | name = Release; 272 | }; 273 | 732649C626886461002B8467 /* Debug */ = { 274 | isa = XCBuildConfiguration; 275 | buildSettings = { 276 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 277 | ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; 278 | CODE_SIGN_STYLE = Automatic; 279 | DEVELOPMENT_ASSET_PATHS = "\"LCOMockTest/Preview Content\""; 280 | ENABLE_PREVIEWS = YES; 281 | INFOPLIST_FILE = LCOMockTest/Info.plist; 282 | IPHONEOS_DEPLOYMENT_TARGET = 14.0; 283 | LD_RUNPATH_SEARCH_PATHS = ( 284 | "$(inherited)", 285 | "@executable_path/Frameworks", 286 | ); 287 | PRODUCT_BUNDLE_IDENTIFIER = lco.dev.LCOMockTest; 288 | PRODUCT_NAME = "$(TARGET_NAME)"; 289 | SWIFT_VERSION = 5.0; 290 | TARGETED_DEVICE_FAMILY = "1,2"; 291 | }; 292 | name = Debug; 293 | }; 294 | 732649C726886461002B8467 /* Release */ = { 295 | isa = XCBuildConfiguration; 296 | buildSettings = { 297 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 298 | ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; 299 | CODE_SIGN_STYLE = Automatic; 300 | DEVELOPMENT_ASSET_PATHS = "\"LCOMockTest/Preview Content\""; 301 | ENABLE_PREVIEWS = YES; 302 | INFOPLIST_FILE = LCOMockTest/Info.plist; 303 | IPHONEOS_DEPLOYMENT_TARGET = 14.0; 304 | LD_RUNPATH_SEARCH_PATHS = ( 305 | "$(inherited)", 306 | "@executable_path/Frameworks", 307 | ); 308 | PRODUCT_BUNDLE_IDENTIFIER = lco.dev.LCOMockTest; 309 | PRODUCT_NAME = "$(TARGET_NAME)"; 310 | SWIFT_VERSION = 5.0; 311 | TARGETED_DEVICE_FAMILY = "1,2"; 312 | }; 313 | name = Release; 314 | }; 315 | /* End XCBuildConfiguration section */ 316 | 317 | /* Begin XCConfigurationList section */ 318 | 732649B12688645F002B8467 /* Build configuration list for PBXProject "LCOMockTest" */ = { 319 | isa = XCConfigurationList; 320 | buildConfigurations = ( 321 | 732649C326886461002B8467 /* Debug */, 322 | 732649C426886461002B8467 /* Release */, 323 | ); 324 | defaultConfigurationIsVisible = 0; 325 | defaultConfigurationName = Release; 326 | }; 327 | 732649C526886461002B8467 /* Build configuration list for PBXNativeTarget "LCOMockTest" */ = { 328 | isa = XCConfigurationList; 329 | buildConfigurations = ( 330 | 732649C626886461002B8467 /* Debug */, 331 | 732649C726886461002B8467 /* Release */, 332 | ); 333 | defaultConfigurationIsVisible = 0; 334 | defaultConfigurationName = Release; 335 | }; 336 | /* End XCConfigurationList section */ 337 | }; 338 | rootObject = 732649AE2688645F002B8467 /* Project object */; 339 | } 340 | -------------------------------------------------------------------------------- /LCOMockTest.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /LCOMockTest.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /LCOMockTest.xcodeproj/xcuserdata/lco.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | SchemeUserState 6 | 7 | LCOMockTest.xcscheme_^#shared#^_ 8 | 9 | orderHint 10 | 0 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /LCOMockTest/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "colors" : [ 3 | { 4 | "idiom" : "universal" 5 | } 6 | ], 7 | "info" : { 8 | "author" : "xcode", 9 | "version" : 1 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /LCOMockTest/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "iphone", 5 | "scale" : "2x", 6 | "size" : "20x20" 7 | }, 8 | { 9 | "idiom" : "iphone", 10 | "scale" : "3x", 11 | "size" : "20x20" 12 | }, 13 | { 14 | "idiom" : "iphone", 15 | "scale" : "2x", 16 | "size" : "29x29" 17 | }, 18 | { 19 | "idiom" : "iphone", 20 | "scale" : "3x", 21 | "size" : "29x29" 22 | }, 23 | { 24 | "idiom" : "iphone", 25 | "scale" : "2x", 26 | "size" : "40x40" 27 | }, 28 | { 29 | "idiom" : "iphone", 30 | "scale" : "3x", 31 | "size" : "40x40" 32 | }, 33 | { 34 | "idiom" : "iphone", 35 | "scale" : "2x", 36 | "size" : "60x60" 37 | }, 38 | { 39 | "idiom" : "iphone", 40 | "scale" : "3x", 41 | "size" : "60x60" 42 | }, 43 | { 44 | "idiom" : "ipad", 45 | "scale" : "1x", 46 | "size" : "20x20" 47 | }, 48 | { 49 | "idiom" : "ipad", 50 | "scale" : "2x", 51 | "size" : "20x20" 52 | }, 53 | { 54 | "idiom" : "ipad", 55 | "scale" : "1x", 56 | "size" : "29x29" 57 | }, 58 | { 59 | "idiom" : "ipad", 60 | "scale" : "2x", 61 | "size" : "29x29" 62 | }, 63 | { 64 | "idiom" : "ipad", 65 | "scale" : "1x", 66 | "size" : "40x40" 67 | }, 68 | { 69 | "idiom" : "ipad", 70 | "scale" : "2x", 71 | "size" : "40x40" 72 | }, 73 | { 74 | "idiom" : "ipad", 75 | "scale" : "1x", 76 | "size" : "76x76" 77 | }, 78 | { 79 | "idiom" : "ipad", 80 | "scale" : "2x", 81 | "size" : "76x76" 82 | }, 83 | { 84 | "idiom" : "ipad", 85 | "scale" : "2x", 86 | "size" : "83.5x83.5" 87 | }, 88 | { 89 | "idiom" : "ios-marketing", 90 | "scale" : "1x", 91 | "size" : "1024x1024" 92 | } 93 | ], 94 | "info" : { 95 | "author" : "xcode", 96 | "version" : 1 97 | } 98 | } 99 | -------------------------------------------------------------------------------- /LCOMockTest/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /LCOMockTest/Assets.xcassets/mt-1.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "mt-1.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /LCOMockTest/Assets.xcassets/mt-1.imageset/mt-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/SwiftUI-Crash-course-21/a971f16d76dd71777d022da89194f3b44de9b9c3/LCOMockTest/Assets.xcassets/mt-1.imageset/mt-1.png -------------------------------------------------------------------------------- /LCOMockTest/Assets.xcassets/mt-10.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "mt-10.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /LCOMockTest/Assets.xcassets/mt-10.imageset/mt-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/SwiftUI-Crash-course-21/a971f16d76dd71777d022da89194f3b44de9b9c3/LCOMockTest/Assets.xcassets/mt-10.imageset/mt-10.png -------------------------------------------------------------------------------- /LCOMockTest/Assets.xcassets/mt-2.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "mt-2.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /LCOMockTest/Assets.xcassets/mt-2.imageset/mt-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/SwiftUI-Crash-course-21/a971f16d76dd71777d022da89194f3b44de9b9c3/LCOMockTest/Assets.xcassets/mt-2.imageset/mt-2.png -------------------------------------------------------------------------------- /LCOMockTest/Assets.xcassets/mt-3.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "mt-3.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /LCOMockTest/Assets.xcassets/mt-3.imageset/mt-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/SwiftUI-Crash-course-21/a971f16d76dd71777d022da89194f3b44de9b9c3/LCOMockTest/Assets.xcassets/mt-3.imageset/mt-3.png -------------------------------------------------------------------------------- /LCOMockTest/Assets.xcassets/mt-4.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "mt-4.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /LCOMockTest/Assets.xcassets/mt-4.imageset/mt-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/SwiftUI-Crash-course-21/a971f16d76dd71777d022da89194f3b44de9b9c3/LCOMockTest/Assets.xcassets/mt-4.imageset/mt-4.png -------------------------------------------------------------------------------- /LCOMockTest/Assets.xcassets/mt-5.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "mt-5.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /LCOMockTest/Assets.xcassets/mt-5.imageset/mt-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/SwiftUI-Crash-course-21/a971f16d76dd71777d022da89194f3b44de9b9c3/LCOMockTest/Assets.xcassets/mt-5.imageset/mt-5.png -------------------------------------------------------------------------------- /LCOMockTest/Assets.xcassets/mt-6.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "mt-6.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /LCOMockTest/Assets.xcassets/mt-6.imageset/mt-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/SwiftUI-Crash-course-21/a971f16d76dd71777d022da89194f3b44de9b9c3/LCOMockTest/Assets.xcassets/mt-6.imageset/mt-6.png -------------------------------------------------------------------------------- /LCOMockTest/Assets.xcassets/mt-7.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "mt-7.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /LCOMockTest/Assets.xcassets/mt-7.imageset/mt-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/SwiftUI-Crash-course-21/a971f16d76dd71777d022da89194f3b44de9b9c3/LCOMockTest/Assets.xcassets/mt-7.imageset/mt-7.png -------------------------------------------------------------------------------- /LCOMockTest/Assets.xcassets/mt-8.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "mt-8.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /LCOMockTest/Assets.xcassets/mt-8.imageset/mt-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/SwiftUI-Crash-course-21/a971f16d76dd71777d022da89194f3b44de9b9c3/LCOMockTest/Assets.xcassets/mt-8.imageset/mt-8.png -------------------------------------------------------------------------------- /LCOMockTest/Assets.xcassets/mt-9.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "mt-9.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /LCOMockTest/Assets.xcassets/mt-9.imageset/mt-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/SwiftUI-Crash-course-21/a971f16d76dd71777d022da89194f3b44de9b9c3/LCOMockTest/Assets.xcassets/mt-9.imageset/mt-9.png -------------------------------------------------------------------------------- /LCOMockTest/ContentView.swift: -------------------------------------------------------------------------------- 1 | // 2 | // ContentView.swift 3 | // LCOMockTest 4 | // 5 | // Created by lco on 27/06/21. 6 | // \u{20B9} 7 | 8 | import SwiftUI 9 | 10 | struct ContentView: View { 11 | 12 | var mockTest : [MockTest] = MockTestList.LCOTest 13 | var body: some View { 14 | 15 | NavigationView{ 16 | 17 | 18 | List(mockTest, id: \.id){ mt in 19 | NavigationLink( 20 | destination: MockTestDetailView(mockTest: mt), 21 | label: { 22 | Image(mt.imageName) 23 | .resizable() 24 | .scaledToFit() 25 | .frame(height: 90) 26 | .padding(.horizontal, 7) 27 | VStack(alignment: .leading, spacing:10 ){ 28 | Text(mt.title) 29 | .fontWeight(.medium) 30 | .font(.headline) 31 | Text("\u{20B9} \(mt.sellPrice)") 32 | .fontWeight(.medium) 33 | .font(.subheadline) 34 | 35 | 36 | } 37 | }) 38 | }.navigationTitle("Mock Test") 39 | } 40 | 41 | 42 | } 43 | } 44 | 45 | struct ContentView_Previews: PreviewProvider { 46 | static var previews: some View { 47 | ContentView() 48 | } 49 | } 50 | -------------------------------------------------------------------------------- /LCOMockTest/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 | 28 | UIApplicationSupportsIndirectInputEvents 29 | 30 | UILaunchScreen 31 | 32 | UIRequiredDeviceCapabilities 33 | 34 | armv7 35 | 36 | UISupportedInterfaceOrientations 37 | 38 | UIInterfaceOrientationPortrait 39 | UIInterfaceOrientationLandscapeLeft 40 | UIInterfaceOrientationLandscapeRight 41 | 42 | UISupportedInterfaceOrientations~ipad 43 | 44 | UIInterfaceOrientationPortrait 45 | UIInterfaceOrientationPortraitUpsideDown 46 | UIInterfaceOrientationLandscapeLeft 47 | UIInterfaceOrientationLandscapeRight 48 | 49 | 50 | 51 | -------------------------------------------------------------------------------- /LCOMockTest/LCOMockTestApp.swift: -------------------------------------------------------------------------------- 1 | // 2 | // LCOMockTestApp.swift 3 | // LCOMockTest 4 | // 5 | // Created by lco on 27/06/21. 6 | // 7 | 8 | import SwiftUI 9 | 10 | @main 11 | struct LCOMockTestApp: App { 12 | var body: some Scene { 13 | WindowGroup { 14 | ContentView() 15 | } 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /LCOMockTest/MockTest.swift: -------------------------------------------------------------------------------- 1 | // 2 | // MockTest.swift 3 | // LCOMockTest 4 | // 5 | // Created by lco on 27/06/21. 6 | // 7 | 8 | import SwiftUI 9 | 10 | struct MockTest: Identifiable{ 11 | let id = UUID() 12 | let imageName: String 13 | let title: String 14 | let description: String 15 | let sellPrice: String 16 | let originalPrice: String 17 | let url: URL 18 | } 19 | 20 | struct MockTestList{ 21 | static let LCOTest = [ 22 | MockTest(imageName: "mt-1", 23 | title: "Pro MAX Interview Preparation Edition 1", 24 | description: "These are interview preparation tests with a singular goal, to make sure that you a little better in real world interviews. Leaderboards are ranked based on 1st attempt", 25 | sellPrice: "199", 26 | originalPrice: "2000", 27 | url: URL(string: "https://courses.learncodeonline.in/learn/Pro-Max-Interview-Preparation-Edition-1")!), 28 | 29 | 30 | MockTest(imageName: "mt-2", 31 | title: "Pro Aptitude - Python", 32 | description: "These are interview preparation tests with a singular goal, to make sure that you a little better in real world interviews. Leaderboards are ranked based on 1st attempt", 33 | 34 | sellPrice: "299", 35 | originalPrice: "4000", 36 | url: URL(string: "https://courses.learncodeonline.in/learn/Pro-Aptitude-Python")!), 37 | 38 | MockTest(imageName: "mt-3", 39 | title: "Pro Aptitude - Javascript", 40 | description: "These are interview preparation tests with a singular goal, to make sure that you a little better in real world interviews. Leaderboards are ranked based on 1st attempt", 41 | 42 | sellPrice: "FREE", 43 | originalPrice: "3000", 44 | url: URL(string: "https://courses.learncodeonline.in/learn/Pro-Aptitude-Java")!), 45 | 46 | MockTest(imageName: "mt-4", 47 | title: "Pro Aptitude - Java", 48 | description: "These are interview preparation tests with a singular goal, to make sure that you a little better in real world interviews. Leaderboards are ranked based on 1st attempt", 49 | 50 | sellPrice: "FREE", 51 | originalPrice: "200", 52 | url: URL(string: "https://courses.learncodeonline.in/learn")!), 53 | 54 | MockTest(imageName: "mt-5", 55 | title: "Pro Aptitude - C++", 56 | description: "These are interview preparation tests with a singular goal, to make sure that you a little better in real world interviews. Leaderboards are ranked based on 1st attempt", 57 | 58 | sellPrice: "399", 59 | originalPrice: "2099", 60 | url: URL(string: "https://courses.learncodeonline.in/learn")!), 61 | 62 | MockTest(imageName: "mt-6", 63 | title: "Pro Aptitude - Angular", 64 | description: "These are interview preparation tests with a singular goal, to make sure that you a little better in real world interviews. Leaderboards are ranked based on 1st attempt", 65 | 66 | sellPrice: "599", 67 | originalPrice: "8000", 68 | url: URL(string: "https://courses.learncodeonline.in/learn")!), 69 | 70 | MockTest(imageName: "mt-7", 71 | title: "Pro Aptitude - ReactJS", 72 | description: "These are interview preparation tests with a singular goal, to make sure that you a little better in real world interviews. Leaderboards are ranked based on 1st attempt", 73 | 74 | sellPrice: "399", 75 | originalPrice: "2043", 76 | url: URL(string: "https://courses.learncodeonline.in/learn")!), 77 | 78 | MockTest(imageName: "mt-8", 79 | title: "Pro Aptitude - C Programming", 80 | description: "These are interview preparation tests with a singular goal, to make sure that you a little better in real world interviews. Leaderboards are ranked based on 1st attempt", 81 | 82 | sellPrice: "199", 83 | originalPrice: "2545", 84 | url: URL(string: "https://courses.learncodeonline.in/learn")!), 85 | 86 | MockTest(imageName: "mt-9", 87 | title: "Pro Aptitude - Ruby on Rails", 88 | description: "These are interview preparation tests with a singular goal, to make sure that you a little better in real world interviews. Leaderboards are ranked based on 1st attempt.", 89 | 90 | sellPrice: "199", 91 | originalPrice: "2000", 92 | url: URL(string: "https://courses.learncodeonline.in/learn")!), 93 | 94 | MockTest(imageName: "mt-10", 95 | title: "Pro Aptitude - Rust Programming", 96 | description: "These are interview preparation tests with a singular goal, to make sure that you a little better in real world interviews. Leaderboards are ranked based on 1st attempt", 97 | 98 | sellPrice: "199", 99 | originalPrice: "2000", 100 | url: URL(string: "https://courses.learncodeonline.in/learn")!) 101 | ] 102 | } 103 | -------------------------------------------------------------------------------- /LCOMockTest/MockTestDetailView.swift: -------------------------------------------------------------------------------- 1 | // 2 | // MockTestDetailView.swift 3 | // LCOMockTest 4 | // 5 | // Created by lco on 27/06/21. 6 | // 7 | 8 | import SwiftUI 9 | 10 | let rupee = "\u{20B9}" 11 | 12 | struct MockTestDetailView: View { 13 | var mockTest: MockTest 14 | var body: some View { 15 | VStack{ 16 | Image(mockTest.imageName) 17 | .resizable() 18 | .scaledToFit() 19 | .frame(height: 210) 20 | .cornerRadius(12.0) 21 | Text(mockTest.title) 22 | .font(.title2) 23 | .lineLimit(2) 24 | .padding(.vertical, 4) 25 | 26 | HStack(spacing: 60){ 27 | Text("\(rupee) \(mockTest.sellPrice)") 28 | .bold() 29 | .font(.title3) 30 | .foregroundColor(.green) 31 | Text("\(rupee) \(mockTest.originalPrice)") 32 | .font(.title3) 33 | .strikethrough() 34 | .padding(.vertical, 15) 35 | 36 | } 37 | HStack(spacing: 60){ 38 | VStack{ 39 | Text("360") 40 | .font(.title) 41 | .bold() 42 | Text("MARKS") 43 | } 44 | 45 | VStack{ 46 | Text("180") 47 | .font(.title) 48 | .bold() 49 | Text("Minutes") 50 | } 51 | VStack{ 52 | Text("220") 53 | .font(.title) 54 | .bold() 55 | Text("Questions") 56 | } 57 | } 58 | Text(mockTest.description) 59 | .padding() 60 | Spacer() 61 | Link(destination: mockTest.url, label: { 62 | Text("Enroll Now") 63 | .bold() 64 | .frame(width: 320, height: 40) 65 | .background(Color(.systemGreen)) 66 | .foregroundColor(.black) 67 | .cornerRadius(5.0) 68 | }) 69 | } 70 | } 71 | } 72 | 73 | struct MockTestDetailView_Previews: PreviewProvider { 74 | static var previews: some View { 75 | MockTestDetailView(mockTest: MockTestList.LCOTest[1]) 76 | } 77 | } 78 | -------------------------------------------------------------------------------- /LCOMockTest/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # SwiftUI-Crash-course-21 2 | Swift UI Crash course - building Mock test view of LCO 3 | 4 | 5 | 6 | for more visit 7 | [LearnCodeOnline.in](https://courses.learncodeonline.in) 8 | -------------------------------------------------------------------------------- /mt-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/SwiftUI-Crash-course-21/a971f16d76dd71777d022da89194f3b44de9b9c3/mt-1.png -------------------------------------------------------------------------------- /mt-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/SwiftUI-Crash-course-21/a971f16d76dd71777d022da89194f3b44de9b9c3/mt-10.png -------------------------------------------------------------------------------- /mt-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/SwiftUI-Crash-course-21/a971f16d76dd71777d022da89194f3b44de9b9c3/mt-2.png -------------------------------------------------------------------------------- /mt-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/SwiftUI-Crash-course-21/a971f16d76dd71777d022da89194f3b44de9b9c3/mt-3.png -------------------------------------------------------------------------------- /mt-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/SwiftUI-Crash-course-21/a971f16d76dd71777d022da89194f3b44de9b9c3/mt-4.png -------------------------------------------------------------------------------- /mt-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/SwiftUI-Crash-course-21/a971f16d76dd71777d022da89194f3b44de9b9c3/mt-5.png -------------------------------------------------------------------------------- /mt-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/SwiftUI-Crash-course-21/a971f16d76dd71777d022da89194f3b44de9b9c3/mt-6.png -------------------------------------------------------------------------------- /mt-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/SwiftUI-Crash-course-21/a971f16d76dd71777d022da89194f3b44de9b9c3/mt-7.png -------------------------------------------------------------------------------- /mt-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/SwiftUI-Crash-course-21/a971f16d76dd71777d022da89194f3b44de9b9c3/mt-8.png -------------------------------------------------------------------------------- /mt-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiteshchoudhary/SwiftUI-Crash-course-21/a971f16d76dd71777d022da89194f3b44de9b9c3/mt-9.png --------------------------------------------------------------------------------