├── CardMenuUI ├── CardMenu.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcuserdata │ │ │ ├── alberto.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ │ │ └── albertolourenco.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ ├── xcshareddata │ │ └── xcschemes │ │ │ └── CardMenu.xcscheme │ └── xcuserdata │ │ ├── alberto.xcuserdatad │ │ └── xcschemes │ │ │ └── xcschememanagement.plist │ │ └── albertolourenco.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ │ └── xcschemes │ │ └── xcschememanagement.plist └── CardMenu │ ├── Application │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Colors │ │ │ ├── Background-Primary.colorset │ │ │ │ └── Contents.json │ │ │ ├── Background-Secondary.colorset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Base.lproj │ │ └── LaunchScreen.storyboard │ ├── Info.plist │ └── SceneDelegate.swift │ ├── Modules │ ├── ContentView.swift │ └── MenuView.swift │ ├── Preview Content │ └── Preview Assets.xcassets │ │ ├── Avatar.imageset │ │ ├── AiXns3XA_400x400.jpg │ │ └── Contents.json │ │ └── Contents.json │ └── UIComponents │ ├── AppButton.swift │ └── CustomModifiers.swift ├── README.md └── github-assets ├── cover.png └── preview-1.gif /CardMenuUI/CardMenu.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 50; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 1630BDE42413EE2900DB6EC8 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1630BDE32413EE2900DB6EC8 /* AppDelegate.swift */; }; 11 | 1630BDE62413EE2900DB6EC8 /* SceneDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1630BDE52413EE2900DB6EC8 /* SceneDelegate.swift */; }; 12 | 1630BDE82413EE2900DB6EC8 /* ContentView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1630BDE72413EE2900DB6EC8 /* ContentView.swift */; }; 13 | 1630BDEA2413EE2B00DB6EC8 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 1630BDE92413EE2B00DB6EC8 /* Assets.xcassets */; }; 14 | 1630BDED2413EE2B00DB6EC8 /* Preview Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 1630BDEC2413EE2B00DB6EC8 /* Preview Assets.xcassets */; }; 15 | 1630BDF02413EE2B00DB6EC8 /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 1630BDEE2413EE2B00DB6EC8 /* LaunchScreen.storyboard */; }; 16 | 1630BDFA2413EF3A00DB6EC8 /* MenuView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1630BDF92413EF3A00DB6EC8 /* MenuView.swift */; }; 17 | 1630BDFD2413EF6400DB6EC8 /* AppButton.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1630BDFC2413EF6400DB6EC8 /* AppButton.swift */; }; 18 | 1630BDFF2413EF7900DB6EC8 /* CustomModifiers.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1630BDFE2413EF7900DB6EC8 /* CustomModifiers.swift */; }; 19 | /* End PBXBuildFile section */ 20 | 21 | /* Begin PBXFileReference section */ 22 | 1630BDE02413EE2900DB6EC8 /* CardMenu.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = CardMenu.app; sourceTree = BUILT_PRODUCTS_DIR; }; 23 | 1630BDE32413EE2900DB6EC8 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; 24 | 1630BDE52413EE2900DB6EC8 /* SceneDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SceneDelegate.swift; sourceTree = ""; }; 25 | 1630BDE72413EE2900DB6EC8 /* ContentView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ContentView.swift; sourceTree = ""; }; 26 | 1630BDE92413EE2B00DB6EC8 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; 27 | 1630BDEC2413EE2B00DB6EC8 /* Preview Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = "Preview Assets.xcassets"; sourceTree = ""; }; 28 | 1630BDEF2413EE2B00DB6EC8 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = ""; }; 29 | 1630BDF12413EE2B00DB6EC8 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 30 | 1630BDF92413EF3A00DB6EC8 /* MenuView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MenuView.swift; sourceTree = ""; }; 31 | 1630BDFC2413EF6400DB6EC8 /* AppButton.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppButton.swift; sourceTree = ""; }; 32 | 1630BDFE2413EF7900DB6EC8 /* CustomModifiers.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CustomModifiers.swift; sourceTree = ""; }; 33 | /* End PBXFileReference section */ 34 | 35 | /* Begin PBXFrameworksBuildPhase section */ 36 | 1630BDDD2413EE2900DB6EC8 /* Frameworks */ = { 37 | isa = PBXFrameworksBuildPhase; 38 | buildActionMask = 2147483647; 39 | files = ( 40 | ); 41 | runOnlyForDeploymentPostprocessing = 0; 42 | }; 43 | /* End PBXFrameworksBuildPhase section */ 44 | 45 | /* Begin PBXGroup section */ 46 | 1630BDD72413EE2900DB6EC8 = { 47 | isa = PBXGroup; 48 | children = ( 49 | 1630BDE22413EE2900DB6EC8 /* CardMenu */, 50 | 1630BDE12413EE2900DB6EC8 /* Products */, 51 | ); 52 | sourceTree = ""; 53 | }; 54 | 1630BDE12413EE2900DB6EC8 /* Products */ = { 55 | isa = PBXGroup; 56 | children = ( 57 | 1630BDE02413EE2900DB6EC8 /* CardMenu.app */, 58 | ); 59 | name = Products; 60 | sourceTree = ""; 61 | }; 62 | 1630BDE22413EE2900DB6EC8 /* CardMenu */ = { 63 | isa = PBXGroup; 64 | children = ( 65 | 1630BDF72413EEB500DB6EC8 /* Application */, 66 | 1630BDF82413EEFD00DB6EC8 /* Modules */, 67 | 1630BDFB2413EF4E00DB6EC8 /* UIComponents */, 68 | 1630BDEB2413EE2B00DB6EC8 /* Preview Content */, 69 | ); 70 | path = CardMenu; 71 | sourceTree = ""; 72 | }; 73 | 1630BDEB2413EE2B00DB6EC8 /* Preview Content */ = { 74 | isa = PBXGroup; 75 | children = ( 76 | 1630BDEC2413EE2B00DB6EC8 /* Preview Assets.xcassets */, 77 | ); 78 | path = "Preview Content"; 79 | sourceTree = ""; 80 | }; 81 | 1630BDF72413EEB500DB6EC8 /* Application */ = { 82 | isa = PBXGroup; 83 | children = ( 84 | 1630BDF12413EE2B00DB6EC8 /* Info.plist */, 85 | 1630BDE32413EE2900DB6EC8 /* AppDelegate.swift */, 86 | 1630BDE52413EE2900DB6EC8 /* SceneDelegate.swift */, 87 | 1630BDE92413EE2B00DB6EC8 /* Assets.xcassets */, 88 | 1630BDEE2413EE2B00DB6EC8 /* LaunchScreen.storyboard */, 89 | ); 90 | path = Application; 91 | sourceTree = ""; 92 | }; 93 | 1630BDF82413EEFD00DB6EC8 /* Modules */ = { 94 | isa = PBXGroup; 95 | children = ( 96 | 1630BDE72413EE2900DB6EC8 /* ContentView.swift */, 97 | 1630BDF92413EF3A00DB6EC8 /* MenuView.swift */, 98 | ); 99 | path = Modules; 100 | sourceTree = ""; 101 | }; 102 | 1630BDFB2413EF4E00DB6EC8 /* UIComponents */ = { 103 | isa = PBXGroup; 104 | children = ( 105 | 1630BDFC2413EF6400DB6EC8 /* AppButton.swift */, 106 | 1630BDFE2413EF7900DB6EC8 /* CustomModifiers.swift */, 107 | ); 108 | path = UIComponents; 109 | sourceTree = ""; 110 | }; 111 | /* End PBXGroup section */ 112 | 113 | /* Begin PBXNativeTarget section */ 114 | 1630BDDF2413EE2900DB6EC8 /* CardMenu */ = { 115 | isa = PBXNativeTarget; 116 | buildConfigurationList = 1630BDF42413EE2B00DB6EC8 /* Build configuration list for PBXNativeTarget "CardMenu" */; 117 | buildPhases = ( 118 | 1630BDDC2413EE2900DB6EC8 /* Sources */, 119 | 1630BDDD2413EE2900DB6EC8 /* Frameworks */, 120 | 1630BDDE2413EE2900DB6EC8 /* Resources */, 121 | ); 122 | buildRules = ( 123 | ); 124 | dependencies = ( 125 | ); 126 | name = CardMenu; 127 | productName = CardMenuUI; 128 | productReference = 1630BDE02413EE2900DB6EC8 /* CardMenu.app */; 129 | productType = "com.apple.product-type.application"; 130 | }; 131 | /* End PBXNativeTarget section */ 132 | 133 | /* Begin PBXProject section */ 134 | 1630BDD82413EE2900DB6EC8 /* Project object */ = { 135 | isa = PBXProject; 136 | attributes = { 137 | LastSwiftUpdateCheck = 1130; 138 | LastUpgradeCheck = 1130; 139 | ORGANIZATIONNAME = "Alberto Lourenço"; 140 | TargetAttributes = { 141 | 1630BDDF2413EE2900DB6EC8 = { 142 | CreatedOnToolsVersion = 11.3.1; 143 | }; 144 | }; 145 | }; 146 | buildConfigurationList = 1630BDDB2413EE2900DB6EC8 /* Build configuration list for PBXProject "CardMenu" */; 147 | compatibilityVersion = "Xcode 9.3"; 148 | developmentRegion = en; 149 | hasScannedForEncodings = 0; 150 | knownRegions = ( 151 | en, 152 | Base, 153 | ); 154 | mainGroup = 1630BDD72413EE2900DB6EC8; 155 | productRefGroup = 1630BDE12413EE2900DB6EC8 /* Products */; 156 | projectDirPath = ""; 157 | projectRoot = ""; 158 | targets = ( 159 | 1630BDDF2413EE2900DB6EC8 /* CardMenu */, 160 | ); 161 | }; 162 | /* End PBXProject section */ 163 | 164 | /* Begin PBXResourcesBuildPhase section */ 165 | 1630BDDE2413EE2900DB6EC8 /* Resources */ = { 166 | isa = PBXResourcesBuildPhase; 167 | buildActionMask = 2147483647; 168 | files = ( 169 | 1630BDF02413EE2B00DB6EC8 /* LaunchScreen.storyboard in Resources */, 170 | 1630BDED2413EE2B00DB6EC8 /* Preview Assets.xcassets in Resources */, 171 | 1630BDEA2413EE2B00DB6EC8 /* Assets.xcassets in Resources */, 172 | ); 173 | runOnlyForDeploymentPostprocessing = 0; 174 | }; 175 | /* End PBXResourcesBuildPhase section */ 176 | 177 | /* Begin PBXSourcesBuildPhase section */ 178 | 1630BDDC2413EE2900DB6EC8 /* Sources */ = { 179 | isa = PBXSourcesBuildPhase; 180 | buildActionMask = 2147483647; 181 | files = ( 182 | 1630BDE42413EE2900DB6EC8 /* AppDelegate.swift in Sources */, 183 | 1630BDFA2413EF3A00DB6EC8 /* MenuView.swift in Sources */, 184 | 1630BDE62413EE2900DB6EC8 /* SceneDelegate.swift in Sources */, 185 | 1630BDFF2413EF7900DB6EC8 /* CustomModifiers.swift in Sources */, 186 | 1630BDE82413EE2900DB6EC8 /* ContentView.swift in Sources */, 187 | 1630BDFD2413EF6400DB6EC8 /* AppButton.swift in Sources */, 188 | ); 189 | runOnlyForDeploymentPostprocessing = 0; 190 | }; 191 | /* End PBXSourcesBuildPhase section */ 192 | 193 | /* Begin PBXVariantGroup section */ 194 | 1630BDEE2413EE2B00DB6EC8 /* LaunchScreen.storyboard */ = { 195 | isa = PBXVariantGroup; 196 | children = ( 197 | 1630BDEF2413EE2B00DB6EC8 /* Base */, 198 | ); 199 | name = LaunchScreen.storyboard; 200 | sourceTree = ""; 201 | }; 202 | /* End PBXVariantGroup section */ 203 | 204 | /* Begin XCBuildConfiguration section */ 205 | 1630BDF22413EE2B00DB6EC8 /* Debug */ = { 206 | isa = XCBuildConfiguration; 207 | buildSettings = { 208 | ALWAYS_SEARCH_USER_PATHS = NO; 209 | CLANG_ANALYZER_NONNULL = YES; 210 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; 211 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; 212 | CLANG_CXX_LIBRARY = "libc++"; 213 | CLANG_ENABLE_MODULES = YES; 214 | CLANG_ENABLE_OBJC_ARC = YES; 215 | CLANG_ENABLE_OBJC_WEAK = YES; 216 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 217 | CLANG_WARN_BOOL_CONVERSION = YES; 218 | CLANG_WARN_COMMA = YES; 219 | CLANG_WARN_CONSTANT_CONVERSION = YES; 220 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 221 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 222 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 223 | CLANG_WARN_EMPTY_BODY = YES; 224 | CLANG_WARN_ENUM_CONVERSION = YES; 225 | CLANG_WARN_INFINITE_RECURSION = YES; 226 | CLANG_WARN_INT_CONVERSION = YES; 227 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 228 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 229 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 230 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 231 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 232 | CLANG_WARN_STRICT_PROTOTYPES = YES; 233 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 234 | CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; 235 | CLANG_WARN_UNREACHABLE_CODE = YES; 236 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 237 | COPY_PHASE_STRIP = NO; 238 | DEBUG_INFORMATION_FORMAT = dwarf; 239 | ENABLE_STRICT_OBJC_MSGSEND = YES; 240 | ENABLE_TESTABILITY = YES; 241 | GCC_C_LANGUAGE_STANDARD = gnu11; 242 | GCC_DYNAMIC_NO_PIC = NO; 243 | GCC_NO_COMMON_BLOCKS = YES; 244 | GCC_OPTIMIZATION_LEVEL = 0; 245 | GCC_PREPROCESSOR_DEFINITIONS = ( 246 | "DEBUG=1", 247 | "$(inherited)", 248 | ); 249 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 250 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 251 | GCC_WARN_UNDECLARED_SELECTOR = YES; 252 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 253 | GCC_WARN_UNUSED_FUNCTION = YES; 254 | GCC_WARN_UNUSED_VARIABLE = YES; 255 | IPHONEOS_DEPLOYMENT_TARGET = 13.2; 256 | MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; 257 | MTL_FAST_MATH = YES; 258 | ONLY_ACTIVE_ARCH = YES; 259 | SDKROOT = iphoneos; 260 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; 261 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 262 | }; 263 | name = Debug; 264 | }; 265 | 1630BDF32413EE2B00DB6EC8 /* Release */ = { 266 | isa = XCBuildConfiguration; 267 | buildSettings = { 268 | ALWAYS_SEARCH_USER_PATHS = NO; 269 | CLANG_ANALYZER_NONNULL = YES; 270 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; 271 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; 272 | CLANG_CXX_LIBRARY = "libc++"; 273 | CLANG_ENABLE_MODULES = YES; 274 | CLANG_ENABLE_OBJC_ARC = YES; 275 | CLANG_ENABLE_OBJC_WEAK = YES; 276 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 277 | CLANG_WARN_BOOL_CONVERSION = YES; 278 | CLANG_WARN_COMMA = YES; 279 | CLANG_WARN_CONSTANT_CONVERSION = YES; 280 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 281 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 282 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 283 | CLANG_WARN_EMPTY_BODY = YES; 284 | CLANG_WARN_ENUM_CONVERSION = YES; 285 | CLANG_WARN_INFINITE_RECURSION = YES; 286 | CLANG_WARN_INT_CONVERSION = YES; 287 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 288 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 289 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 290 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 291 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 292 | CLANG_WARN_STRICT_PROTOTYPES = YES; 293 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 294 | CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; 295 | CLANG_WARN_UNREACHABLE_CODE = YES; 296 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 297 | COPY_PHASE_STRIP = NO; 298 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 299 | ENABLE_NS_ASSERTIONS = NO; 300 | ENABLE_STRICT_OBJC_MSGSEND = YES; 301 | GCC_C_LANGUAGE_STANDARD = gnu11; 302 | GCC_NO_COMMON_BLOCKS = YES; 303 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 304 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 305 | GCC_WARN_UNDECLARED_SELECTOR = YES; 306 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 307 | GCC_WARN_UNUSED_FUNCTION = YES; 308 | GCC_WARN_UNUSED_VARIABLE = YES; 309 | IPHONEOS_DEPLOYMENT_TARGET = 13.2; 310 | MTL_ENABLE_DEBUG_INFO = NO; 311 | MTL_FAST_MATH = YES; 312 | SDKROOT = iphoneos; 313 | SWIFT_COMPILATION_MODE = wholemodule; 314 | SWIFT_OPTIMIZATION_LEVEL = "-O"; 315 | VALIDATE_PRODUCT = YES; 316 | }; 317 | name = Release; 318 | }; 319 | 1630BDF52413EE2B00DB6EC8 /* Debug */ = { 320 | isa = XCBuildConfiguration; 321 | buildSettings = { 322 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 323 | CODE_SIGN_STYLE = Automatic; 324 | CURRENT_PROJECT_VERSION = 1; 325 | DEVELOPMENT_ASSET_PATHS = "\"CardMenu/Preview Content\""; 326 | DEVELOPMENT_TEAM = ""; 327 | ENABLE_PREVIEWS = YES; 328 | INFOPLIST_FILE = CardMenu/Application/Info.plist; 329 | INFOPLIST_KEY_CFBundleDisplayName = CardMenu; 330 | IPHONEOS_DEPLOYMENT_TARGET = 13.0; 331 | LD_RUNPATH_SEARCH_PATHS = ( 332 | "$(inherited)", 333 | "@executable_path/Frameworks", 334 | ); 335 | MARKETING_VERSION = 1.0.0; 336 | PRODUCT_BUNDLE_IDENTIFIER = br.com.albertolourenco.CardMenu; 337 | PRODUCT_NAME = "$(TARGET_NAME)"; 338 | SWIFT_VERSION = 5.0; 339 | TARGETED_DEVICE_FAMILY = "1,2"; 340 | }; 341 | name = Debug; 342 | }; 343 | 1630BDF62413EE2B00DB6EC8 /* Release */ = { 344 | isa = XCBuildConfiguration; 345 | buildSettings = { 346 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 347 | CODE_SIGN_STYLE = Automatic; 348 | CURRENT_PROJECT_VERSION = 1; 349 | DEVELOPMENT_ASSET_PATHS = "\"CardMenu/Preview Content\""; 350 | DEVELOPMENT_TEAM = ""; 351 | ENABLE_PREVIEWS = YES; 352 | INFOPLIST_FILE = CardMenu/Application/Info.plist; 353 | INFOPLIST_KEY_CFBundleDisplayName = CardMenu; 354 | IPHONEOS_DEPLOYMENT_TARGET = 13.0; 355 | LD_RUNPATH_SEARCH_PATHS = ( 356 | "$(inherited)", 357 | "@executable_path/Frameworks", 358 | ); 359 | MARKETING_VERSION = 1.0.0; 360 | PRODUCT_BUNDLE_IDENTIFIER = br.com.albertolourenco.CardMenu; 361 | PRODUCT_NAME = "$(TARGET_NAME)"; 362 | SWIFT_VERSION = 5.0; 363 | TARGETED_DEVICE_FAMILY = "1,2"; 364 | }; 365 | name = Release; 366 | }; 367 | /* End XCBuildConfiguration section */ 368 | 369 | /* Begin XCConfigurationList section */ 370 | 1630BDDB2413EE2900DB6EC8 /* Build configuration list for PBXProject "CardMenu" */ = { 371 | isa = XCConfigurationList; 372 | buildConfigurations = ( 373 | 1630BDF22413EE2B00DB6EC8 /* Debug */, 374 | 1630BDF32413EE2B00DB6EC8 /* Release */, 375 | ); 376 | defaultConfigurationIsVisible = 0; 377 | defaultConfigurationName = Release; 378 | }; 379 | 1630BDF42413EE2B00DB6EC8 /* Build configuration list for PBXNativeTarget "CardMenu" */ = { 380 | isa = XCConfigurationList; 381 | buildConfigurations = ( 382 | 1630BDF52413EE2B00DB6EC8 /* Debug */, 383 | 1630BDF62413EE2B00DB6EC8 /* Release */, 384 | ); 385 | defaultConfigurationIsVisible = 0; 386 | defaultConfigurationName = Release; 387 | }; 388 | /* End XCConfigurationList section */ 389 | }; 390 | rootObject = 1630BDD82413EE2900DB6EC8 /* Project object */; 391 | } 392 | -------------------------------------------------------------------------------- /CardMenuUI/CardMenu.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /CardMenuUI/CardMenu.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /CardMenuUI/CardMenu.xcodeproj/project.xcworkspace/xcuserdata/alberto.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoLourenco/CardMenu/6e2f08687f7165a12d2cd3a51564aae7a963df97/CardMenuUI/CardMenu.xcodeproj/project.xcworkspace/xcuserdata/alberto.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /CardMenuUI/CardMenu.xcodeproj/project.xcworkspace/xcuserdata/albertolourenco.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoLourenco/CardMenu/6e2f08687f7165a12d2cd3a51564aae7a963df97/CardMenuUI/CardMenu.xcodeproj/project.xcworkspace/xcuserdata/albertolourenco.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /CardMenuUI/CardMenu.xcodeproj/xcshareddata/xcschemes/CardMenu.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 24 | 25 | 30 | 31 | 32 | 33 | 43 | 45 | 51 | 52 | 53 | 54 | 60 | 62 | 68 | 69 | 70 | 71 | 73 | 74 | 77 | 78 | 79 | -------------------------------------------------------------------------------- /CardMenuUI/CardMenu.xcodeproj/xcuserdata/alberto.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | SchemeUserState 6 | 7 | CardMenu.xcscheme_^#shared#^_ 8 | 9 | orderHint 10 | 0 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /CardMenuUI/CardMenu.xcodeproj/xcuserdata/albertolourenco.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | -------------------------------------------------------------------------------- /CardMenuUI/CardMenu.xcodeproj/xcuserdata/albertolourenco.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | SchemeUserState 6 | 7 | CardMenuUI.xcscheme_^#shared#^_ 8 | 9 | orderHint 10 | 0 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /CardMenuUI/CardMenu/Application/AppDelegate.swift: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.swift 3 | // CardMenu 4 | // 5 | // Created by Alberto Lourenço on 3/7/20. 6 | // Copyright © 2020 Alberto Lourenço. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | @UIApplicationMain 12 | class AppDelegate: UIResponder, UIApplicationDelegate { 13 | 14 | func application(_ application: UIApplication, 15 | didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool { 16 | return true 17 | } 18 | 19 | func application(_ application: UIApplication, 20 | configurationForConnecting connectingSceneSession: UISceneSession, 21 | options: UIScene.ConnectionOptions) -> UISceneConfiguration { 22 | return UISceneConfiguration(name: "Default Configuration", sessionRole: connectingSceneSession.role) 23 | } 24 | 25 | func application(_ application: UIApplication, 26 | didDiscardSceneSessions sceneSessions: Set) {} 27 | } 28 | -------------------------------------------------------------------------------- /CardMenuUI/CardMenu/Application/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 | } -------------------------------------------------------------------------------- /CardMenuUI/CardMenu/Application/Assets.xcassets/Colors/Background-Primary.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | }, 6 | "colors" : [ 7 | { 8 | "idiom" : "universal", 9 | "color" : { 10 | "color-space" : "srgb", 11 | "components" : { 12 | "red" : "0.961", 13 | "alpha" : "1.000", 14 | "blue" : "0.980", 15 | "green" : "0.965" 16 | } 17 | } 18 | }, 19 | { 20 | "idiom" : "universal", 21 | "appearances" : [ 22 | { 23 | "appearance" : "luminosity", 24 | "value" : "dark" 25 | } 26 | ], 27 | "color" : { 28 | "color-space" : "srgb", 29 | "components" : { 30 | "red" : "0.184", 31 | "alpha" : "1.000", 32 | "blue" : "0.251", 33 | "green" : "0.212" 34 | } 35 | } 36 | } 37 | ] 38 | } -------------------------------------------------------------------------------- /CardMenuUI/CardMenu/Application/Assets.xcassets/Colors/Background-Secondary.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | }, 6 | "colors" : [ 7 | { 8 | "idiom" : "universal", 9 | "color" : { 10 | "color-space" : "srgb", 11 | "components" : { 12 | "red" : "1.000", 13 | "alpha" : "1.000", 14 | "blue" : "1.000", 15 | "green" : "1.000" 16 | } 17 | } 18 | }, 19 | { 20 | "idiom" : "universal", 21 | "appearances" : [ 22 | { 23 | "appearance" : "luminosity", 24 | "value" : "dark" 25 | } 26 | ], 27 | "color" : { 28 | "color-space" : "srgb", 29 | "components" : { 30 | "red" : "0.255", 31 | "alpha" : "1.000", 32 | "blue" : "0.361", 33 | "green" : "0.290" 34 | } 35 | } 36 | } 37 | ] 38 | } -------------------------------------------------------------------------------- /CardMenuUI/CardMenu/Application/Assets.xcassets/Colors/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /CardMenuUI/CardMenu/Application/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /CardMenuUI/CardMenu/Application/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 | -------------------------------------------------------------------------------- /CardMenuUI/CardMenu/Application/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 | UISceneConfigurationName 33 | Default Configuration 34 | UISceneDelegateClassName 35 | $(PRODUCT_MODULE_NAME).SceneDelegate 36 | 37 | 38 | 39 | 40 | UILaunchStoryboardName 41 | LaunchScreen 42 | UIRequiredDeviceCapabilities 43 | 44 | armv7 45 | 46 | UISupportedInterfaceOrientations 47 | 48 | UIInterfaceOrientationPortrait 49 | 50 | 51 | 52 | -------------------------------------------------------------------------------- /CardMenuUI/CardMenu/Application/SceneDelegate.swift: -------------------------------------------------------------------------------- 1 | // 2 | // SceneDelegate.swift 3 | // CardMenu 4 | // 5 | // Created by Alberto Lourenço on 3/7/20. 6 | // Copyright © 2020 Alberto Lourenço. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | import SwiftUI 11 | 12 | class SceneDelegate: UIResponder, UIWindowSceneDelegate { 13 | 14 | var window: UIWindow? 15 | 16 | func scene(_ scene: UIScene, 17 | willConnectTo session: UISceneSession, 18 | options connectionOptions: UIScene.ConnectionOptions) { 19 | 20 | let contentView = ContentView() 21 | 22 | if let windowScene = scene as? UIWindowScene { 23 | 24 | let window = UIWindow(windowScene: windowScene) 25 | window.rootViewController = UIHostingController(rootView: contentView) 26 | 27 | self.window = window 28 | 29 | window.makeKeyAndVisible() 30 | } 31 | } 32 | 33 | func sceneDidDisconnect(_ scene: UIScene) {} 34 | 35 | func sceneDidBecomeActive(_ scene: UIScene) {} 36 | 37 | func sceneWillResignActive(_ scene: UIScene) {} 38 | 39 | func sceneWillEnterForeground(_ scene: UIScene) {} 40 | 41 | func sceneDidEnterBackground(_ scene: UIScene) {} 42 | } 43 | -------------------------------------------------------------------------------- /CardMenuUI/CardMenu/Modules/ContentView.swift: -------------------------------------------------------------------------------- 1 | // 2 | // ContentView.swift 3 | // CardMenu 4 | // 5 | // Created by Alberto Lourenço on 3/7/20. 6 | // Copyright © 2020 Alberto Lourenço. All rights reserved. 7 | // 8 | 9 | import SwiftUI 10 | 11 | struct ContentView: View { 12 | 13 | @State var showMenu: Bool = false 14 | @State var dragState: CGSize = .zero 15 | 16 | var body: some View { 17 | 18 | ZStack { 19 | 20 | Color.black.edgesIgnoringSafeArea(.all) // window background 21 | 22 | ZStack { 23 | 24 | Color("Background-Primary") 25 | .edgesIgnoringSafeArea(.all) 26 | 27 | AppButton(title: "Show Menu") { 28 | self.showMenu.toggle() 29 | } 30 | .opacity(showMenu ? 0 : 1) 31 | } 32 | .clipShape(RoundedRectangle(cornerRadius: showMenu ? 20 : 0)) 33 | .scaleEffect(showMenu ? 0.8 : 1) 34 | .rotation3DEffect(Angle(degrees: showMenu ? 20 : 0), axis: (x: 0, y: -10, z: 0)) 35 | .rotation3DEffect(Angle(degrees: Double(dragState.width) * 0.45), axis: (x: 0, y: -10, z: 0)) 36 | .animation(.spring(response: 0.4, dampingFraction: 0.6, blendDuration: 0)) 37 | .edgesIgnoringSafeArea(.all) 38 | 39 | MenuView(showing: $showMenu, dragState: $dragState) 40 | } 41 | } 42 | } 43 | 44 | struct ContentView_Previews: PreviewProvider { 45 | static var previews: some View { 46 | ContentView() 47 | } 48 | } 49 | -------------------------------------------------------------------------------- /CardMenuUI/CardMenu/Modules/MenuView.swift: -------------------------------------------------------------------------------- 1 | // 2 | // MenuView.swift 3 | // CardMenu 4 | // 5 | // Created by Alberto Lourenço on 3/7/20. 6 | // Copyright © 2020 Alberto Lourenço. All rights reserved. 7 | // 8 | 9 | import SwiftUI 10 | 11 | struct MenuView: View { 12 | 13 | @Binding var showing: Bool 14 | @Binding var dragState: CGSize 15 | 16 | var body: some View { 17 | 18 | ZStack { 19 | 20 | // Background mask view 21 | 22 | Color.black 23 | .edgesIgnoringSafeArea(.all) 24 | .opacity(showing ? 0.3 : 0) 25 | .animation(.easeOut) 26 | .onTapGesture { 27 | self.showing.toggle() 28 | } 29 | 30 | // Card view 31 | 32 | VStack { 33 | 34 | VStack { 35 | 36 | VStack (spacing: 5) { 37 | 38 | Image("Avatar") 39 | .resizable() 40 | .frame(width: 100, height: 100) 41 | .clipShape(Circle()) 42 | 43 | Text("Alberto Lourenço") 44 | .fontWeight(Font.Weight.semibold) 45 | 46 | Text("@albertoLourenc") 47 | .foregroundColor(Color.blue) 48 | .font(Font.system(size: 14)) 49 | } 50 | .frame(height: 250) 51 | 52 | Divider() 53 | .padding(.bottom, 30) 54 | 55 | ScrollView { 56 | 57 | VStack (alignment: .leading, spacing: 60) { 58 | 59 | HStack { 60 | Image(systemName: "house") 61 | Text("Home") 62 | } 63 | 64 | HStack { 65 | Image(systemName: "creditcard") 66 | Text("Payments") 67 | } 68 | 69 | HStack { 70 | Image(systemName: "power") 71 | Text("Logout") 72 | } 73 | } 74 | } 75 | } 76 | .modifier(MenuModifier()) 77 | .opacity(showing ? 1 : 0) 78 | .offset(x: showing ? 20 : -UIScreen.main.bounds.width) 79 | .offset(x: dragState.width) 80 | .rotation3DEffect(Angle(degrees: showing ? 0 : 85), axis: (x: 0, y: 10, z: 0)) 81 | .rotation3DEffect(Angle(degrees: -Double(dragState.width)), axis: (x: 0, y: 10, z: 0)) 82 | .animation(.spring(response: 0.4, dampingFraction: 0.6, blendDuration: 0.3)) 83 | .gesture( 84 | DragGesture() 85 | .onChanged{ value in 86 | 87 | if value.translation.width > 0 { 88 | self.dragState.width = 0 89 | }else if value.translation.width < -50 { 90 | self.dragState.width = -50 91 | }else{ 92 | self.dragState = value.translation 93 | } 94 | } 95 | .onEnded{ value in 96 | 97 | if self.dragState.width < -40 { 98 | self.showing = false 99 | } 100 | self.dragState = .zero 101 | } 102 | ) 103 | } 104 | .frame(width: UIScreen.main.bounds.width, alignment: .leading) 105 | .onAppear { 106 | self.dragState = .zero 107 | } 108 | } 109 | } 110 | } 111 | 112 | struct MenuView_Previews: PreviewProvider { 113 | 114 | static var previews: some View { 115 | 116 | MenuView(showing: .constant(true), dragState: .constant(.zero)) 117 | } 118 | } 119 | -------------------------------------------------------------------------------- /CardMenuUI/CardMenu/Preview Content/Preview Assets.xcassets/Avatar.imageset/AiXns3XA_400x400.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoLourenco/CardMenu/6e2f08687f7165a12d2cd3a51564aae7a963df97/CardMenuUI/CardMenu/Preview Content/Preview Assets.xcassets/Avatar.imageset/AiXns3XA_400x400.jpg -------------------------------------------------------------------------------- /CardMenuUI/CardMenu/Preview Content/Preview Assets.xcassets/Avatar.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "AiXns3XA_400x400.jpg", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /CardMenuUI/CardMenu/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /CardMenuUI/CardMenu/UIComponents/AppButton.swift: -------------------------------------------------------------------------------- 1 | // 2 | // AppButton.swift 3 | // CardMenu 4 | // 5 | // Created by Alberto Lourenço on 3/7/20. 6 | // Copyright © 2020 Alberto Lourenço. All rights reserved. 7 | // 8 | 9 | import SwiftUI 10 | 11 | import SwiftUI 12 | 13 | struct AppButton: View { 14 | 15 | var title: String = "" 16 | var onClick: () -> Void 17 | 18 | var body: some View { 19 | 20 | Button(action: { 21 | self.onClick() 22 | }) { 23 | Text(title) 24 | .modifier(ButtonModifier()) 25 | } 26 | } 27 | } 28 | 29 | struct AppButton_Previews: PreviewProvider { 30 | static var previews: some View { 31 | AppButton(title: "") { 32 | 33 | } 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /CardMenuUI/CardMenu/UIComponents/CustomModifiers.swift: -------------------------------------------------------------------------------- 1 | // 2 | // CustomModifiers.swift 3 | // CardMenu 4 | // 5 | // Created by Alberto Lourenço on 3/7/20. 6 | // Copyright © 2020 Alberto Lourenço. All rights reserved. 7 | // 8 | 9 | import SwiftUI 10 | 11 | struct MenuModifier: ViewModifier { 12 | 13 | func body(content: Content) -> some View { 14 | 15 | content 16 | .frame(width: (UIScreen.main.bounds.width / 3) * 2, height: 550) 17 | .background(LinearGradient(gradient: Gradient(colors: [Color("Background-Secondary"), Color("Background-Primary")]), startPoint: .top, endPoint: .bottom)) 18 | .clipShape(RoundedRectangle(cornerRadius: 40)) 19 | .shadow(color: Color.black.opacity(0.1), radius: 5, x: 5, y: 5) 20 | } 21 | } 22 | 23 | struct ButtonModifier: ViewModifier { 24 | 25 | func body(content: Content) -> some View { 26 | 27 | content 28 | .padding(20) 29 | .background(Color.white) 30 | .foregroundColor(Color.black.opacity(0.6)) 31 | .clipShape(RoundedRectangle(cornerRadius: 30)) 32 | .shadow(color: Color.gray.opacity(0.1), radius: 5, x: 5, y: 5) 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ![cover](https://raw.githubusercontent.com/AlbertoLourenco/CardMenu/master/github-assets/cover.png) 2 | 3 | ## Intro 4 | 5 | An animated card menu built with SwiftUI. 6 | 7 | * This project was replicated in React Native by William Candillon: https://youtu.be/mPzQRPjr-EI 8 | 9 | ## Requirements 10 | 11 | ``` 12 | - iOS 13+ 13 | - Swift 5 14 | - Xcode 11 15 | ``` 16 | 17 | ## This project uses: 18 | 19 | ``` 20 | - SwiftUI 21 | ``` 22 | 23 | ## In action 24 | 25 | ![preview](https://raw.githubusercontent.com/AlbertoLourenco/CardMenu/master/github-assets/preview-1.gif) 26 | -------------------------------------------------------------------------------- /github-assets/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoLourenco/CardMenu/6e2f08687f7165a12d2cd3a51564aae7a963df97/github-assets/cover.png -------------------------------------------------------------------------------- /github-assets/preview-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlbertoLourenco/CardMenu/6e2f08687f7165a12d2cd3a51564aae7a963df97/github-assets/preview-1.gif --------------------------------------------------------------------------------