├── .gitignore ├── .swiftpm └── xcode │ ├── package.xcworkspace │ └── contents.xcworkspacedata │ └── xcuserdata │ └── artur.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist ├── AMSlideMenu.podspec ├── AMSlideMenu ├── AMSlideMenuMainViewController.swift ├── Animation │ ├── AMSlidingAnimationOptions.swift │ ├── AMSlidingAnimatorFactory.swift │ ├── AMSlidingAnimatorProtocol.swift │ ├── Animators │ │ ├── AMSlidingBlurAnimator.swift │ │ ├── AMSlidingContentAnimator.swift │ │ ├── AMSlidingContentShadowAnimator.swift │ │ ├── AMSlidingDimmedBackgroundAnimator.swift │ │ ├── AMSlidingFixedMenuAnimator.swift │ │ ├── AMSlidingGroupAnimator.swift │ │ ├── AMSlidingShadowAnimator.swift │ │ └── AMSlidingStandardAnimator.swift │ └── CAMediaTimingFunction+AMExtension.swift ├── CustomVisualEffectView │ └── BlurryOverlayView.swift ├── Extensions │ └── UIViewController+AMExtension.swift └── Segues │ ├── AMContentSegue.swift │ ├── AMLeftMenuSegue.swift │ └── AMRightMenuSegue.swift ├── AMSlideMenuExample ├── AMSlideMenuExample.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── xcuserdata │ │ └── artur.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist ├── AMSlideMenuExample.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── AMSlideMenuExample │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ ├── MainContainerViewController.swift │ ├── MenuChooserViewController.swift │ ├── SceneDelegate.swift │ └── ViewController.swift ├── Podfile ├── Podfile.lock └── Pods │ ├── Local Podspecs │ └── AMSlideMenu.podspec.json │ ├── Manifest.lock │ ├── Pods.xcodeproj │ ├── project.pbxproj │ └── xcuserdata │ │ └── artur.xcuserdatad │ │ └── xcschemes │ │ ├── AMSlideMenu.xcscheme │ │ ├── Pods-AMSlideMenuExample.xcscheme │ │ └── xcschememanagement.plist │ └── Target Support Files │ ├── AMSlideMenu │ ├── AMSlideMenu-Info.plist │ ├── AMSlideMenu-dummy.m │ ├── AMSlideMenu-prefix.pch │ ├── AMSlideMenu-umbrella.h │ ├── AMSlideMenu.debug.xcconfig │ ├── AMSlideMenu.modulemap │ └── AMSlideMenu.release.xcconfig │ └── Pods-AMSlideMenuExample │ ├── Pods-AMSlideMenuExample-Info.plist │ ├── Pods-AMSlideMenuExample-acknowledgements.markdown │ ├── Pods-AMSlideMenuExample-acknowledgements.plist │ ├── Pods-AMSlideMenuExample-dummy.m │ ├── Pods-AMSlideMenuExample-frameworks-Debug-input-files.xcfilelist │ ├── Pods-AMSlideMenuExample-frameworks-Debug-output-files.xcfilelist │ ├── Pods-AMSlideMenuExample-frameworks-Release-input-files.xcfilelist │ ├── Pods-AMSlideMenuExample-frameworks-Release-output-files.xcfilelist │ ├── Pods-AMSlideMenuExample-frameworks.sh │ ├── Pods-AMSlideMenuExample-umbrella.h │ ├── Pods-AMSlideMenuExample.debug.xcconfig │ ├── Pods-AMSlideMenuExample.modulemap │ └── Pods-AMSlideMenuExample.release.xcconfig ├── LICENSE ├── Package.swift └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matghazaryan/AMSlideMenu2/HEAD/.gitignore -------------------------------------------------------------------------------- /.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matghazaryan/AMSlideMenu2/HEAD/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /.swiftpm/xcode/xcuserdata/artur.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matghazaryan/AMSlideMenu2/HEAD/.swiftpm/xcode/xcuserdata/artur.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /AMSlideMenu.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matghazaryan/AMSlideMenu2/HEAD/AMSlideMenu.podspec -------------------------------------------------------------------------------- /AMSlideMenu/AMSlideMenuMainViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matghazaryan/AMSlideMenu2/HEAD/AMSlideMenu/AMSlideMenuMainViewController.swift -------------------------------------------------------------------------------- /AMSlideMenu/Animation/AMSlidingAnimationOptions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matghazaryan/AMSlideMenu2/HEAD/AMSlideMenu/Animation/AMSlidingAnimationOptions.swift -------------------------------------------------------------------------------- /AMSlideMenu/Animation/AMSlidingAnimatorFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matghazaryan/AMSlideMenu2/HEAD/AMSlideMenu/Animation/AMSlidingAnimatorFactory.swift -------------------------------------------------------------------------------- /AMSlideMenu/Animation/AMSlidingAnimatorProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matghazaryan/AMSlideMenu2/HEAD/AMSlideMenu/Animation/AMSlidingAnimatorProtocol.swift -------------------------------------------------------------------------------- /AMSlideMenu/Animation/Animators/AMSlidingBlurAnimator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matghazaryan/AMSlideMenu2/HEAD/AMSlideMenu/Animation/Animators/AMSlidingBlurAnimator.swift -------------------------------------------------------------------------------- /AMSlideMenu/Animation/Animators/AMSlidingContentAnimator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matghazaryan/AMSlideMenu2/HEAD/AMSlideMenu/Animation/Animators/AMSlidingContentAnimator.swift -------------------------------------------------------------------------------- /AMSlideMenu/Animation/Animators/AMSlidingContentShadowAnimator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matghazaryan/AMSlideMenu2/HEAD/AMSlideMenu/Animation/Animators/AMSlidingContentShadowAnimator.swift -------------------------------------------------------------------------------- /AMSlideMenu/Animation/Animators/AMSlidingDimmedBackgroundAnimator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matghazaryan/AMSlideMenu2/HEAD/AMSlideMenu/Animation/Animators/AMSlidingDimmedBackgroundAnimator.swift -------------------------------------------------------------------------------- /AMSlideMenu/Animation/Animators/AMSlidingFixedMenuAnimator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matghazaryan/AMSlideMenu2/HEAD/AMSlideMenu/Animation/Animators/AMSlidingFixedMenuAnimator.swift -------------------------------------------------------------------------------- /AMSlideMenu/Animation/Animators/AMSlidingGroupAnimator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matghazaryan/AMSlideMenu2/HEAD/AMSlideMenu/Animation/Animators/AMSlidingGroupAnimator.swift -------------------------------------------------------------------------------- /AMSlideMenu/Animation/Animators/AMSlidingShadowAnimator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matghazaryan/AMSlideMenu2/HEAD/AMSlideMenu/Animation/Animators/AMSlidingShadowAnimator.swift -------------------------------------------------------------------------------- /AMSlideMenu/Animation/Animators/AMSlidingStandardAnimator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matghazaryan/AMSlideMenu2/HEAD/AMSlideMenu/Animation/Animators/AMSlidingStandardAnimator.swift -------------------------------------------------------------------------------- /AMSlideMenu/Animation/CAMediaTimingFunction+AMExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matghazaryan/AMSlideMenu2/HEAD/AMSlideMenu/Animation/CAMediaTimingFunction+AMExtension.swift -------------------------------------------------------------------------------- /AMSlideMenu/CustomVisualEffectView/BlurryOverlayView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matghazaryan/AMSlideMenu2/HEAD/AMSlideMenu/CustomVisualEffectView/BlurryOverlayView.swift -------------------------------------------------------------------------------- /AMSlideMenu/Extensions/UIViewController+AMExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matghazaryan/AMSlideMenu2/HEAD/AMSlideMenu/Extensions/UIViewController+AMExtension.swift -------------------------------------------------------------------------------- /AMSlideMenu/Segues/AMContentSegue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matghazaryan/AMSlideMenu2/HEAD/AMSlideMenu/Segues/AMContentSegue.swift -------------------------------------------------------------------------------- /AMSlideMenu/Segues/AMLeftMenuSegue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matghazaryan/AMSlideMenu2/HEAD/AMSlideMenu/Segues/AMLeftMenuSegue.swift -------------------------------------------------------------------------------- /AMSlideMenu/Segues/AMRightMenuSegue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matghazaryan/AMSlideMenu2/HEAD/AMSlideMenu/Segues/AMRightMenuSegue.swift -------------------------------------------------------------------------------- /AMSlideMenuExample/AMSlideMenuExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matghazaryan/AMSlideMenu2/HEAD/AMSlideMenuExample/AMSlideMenuExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /AMSlideMenuExample/AMSlideMenuExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matghazaryan/AMSlideMenu2/HEAD/AMSlideMenuExample/AMSlideMenuExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /AMSlideMenuExample/AMSlideMenuExample.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matghazaryan/AMSlideMenu2/HEAD/AMSlideMenuExample/AMSlideMenuExample.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /AMSlideMenuExample/AMSlideMenuExample.xcodeproj/xcuserdata/artur.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matghazaryan/AMSlideMenu2/HEAD/AMSlideMenuExample/AMSlideMenuExample.xcodeproj/xcuserdata/artur.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /AMSlideMenuExample/AMSlideMenuExample.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matghazaryan/AMSlideMenu2/HEAD/AMSlideMenuExample/AMSlideMenuExample.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /AMSlideMenuExample/AMSlideMenuExample.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matghazaryan/AMSlideMenu2/HEAD/AMSlideMenuExample/AMSlideMenuExample.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /AMSlideMenuExample/AMSlideMenuExample/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matghazaryan/AMSlideMenu2/HEAD/AMSlideMenuExample/AMSlideMenuExample/AppDelegate.swift -------------------------------------------------------------------------------- /AMSlideMenuExample/AMSlideMenuExample/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matghazaryan/AMSlideMenu2/HEAD/AMSlideMenuExample/AMSlideMenuExample/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /AMSlideMenuExample/AMSlideMenuExample/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matghazaryan/AMSlideMenu2/HEAD/AMSlideMenuExample/AMSlideMenuExample/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /AMSlideMenuExample/AMSlideMenuExample/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matghazaryan/AMSlideMenu2/HEAD/AMSlideMenuExample/AMSlideMenuExample/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /AMSlideMenuExample/AMSlideMenuExample/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matghazaryan/AMSlideMenu2/HEAD/AMSlideMenuExample/AMSlideMenuExample/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /AMSlideMenuExample/AMSlideMenuExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matghazaryan/AMSlideMenu2/HEAD/AMSlideMenuExample/AMSlideMenuExample/Info.plist -------------------------------------------------------------------------------- /AMSlideMenuExample/AMSlideMenuExample/MainContainerViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matghazaryan/AMSlideMenu2/HEAD/AMSlideMenuExample/AMSlideMenuExample/MainContainerViewController.swift -------------------------------------------------------------------------------- /AMSlideMenuExample/AMSlideMenuExample/MenuChooserViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matghazaryan/AMSlideMenu2/HEAD/AMSlideMenuExample/AMSlideMenuExample/MenuChooserViewController.swift -------------------------------------------------------------------------------- /AMSlideMenuExample/AMSlideMenuExample/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matghazaryan/AMSlideMenu2/HEAD/AMSlideMenuExample/AMSlideMenuExample/SceneDelegate.swift -------------------------------------------------------------------------------- /AMSlideMenuExample/AMSlideMenuExample/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matghazaryan/AMSlideMenu2/HEAD/AMSlideMenuExample/AMSlideMenuExample/ViewController.swift -------------------------------------------------------------------------------- /AMSlideMenuExample/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matghazaryan/AMSlideMenu2/HEAD/AMSlideMenuExample/Podfile -------------------------------------------------------------------------------- /AMSlideMenuExample/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matghazaryan/AMSlideMenu2/HEAD/AMSlideMenuExample/Podfile.lock -------------------------------------------------------------------------------- /AMSlideMenuExample/Pods/Local Podspecs/AMSlideMenu.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matghazaryan/AMSlideMenu2/HEAD/AMSlideMenuExample/Pods/Local Podspecs/AMSlideMenu.podspec.json -------------------------------------------------------------------------------- /AMSlideMenuExample/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matghazaryan/AMSlideMenu2/HEAD/AMSlideMenuExample/Pods/Manifest.lock -------------------------------------------------------------------------------- /AMSlideMenuExample/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matghazaryan/AMSlideMenu2/HEAD/AMSlideMenuExample/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /AMSlideMenuExample/Pods/Pods.xcodeproj/xcuserdata/artur.xcuserdatad/xcschemes/AMSlideMenu.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matghazaryan/AMSlideMenu2/HEAD/AMSlideMenuExample/Pods/Pods.xcodeproj/xcuserdata/artur.xcuserdatad/xcschemes/AMSlideMenu.xcscheme -------------------------------------------------------------------------------- /AMSlideMenuExample/Pods/Pods.xcodeproj/xcuserdata/artur.xcuserdatad/xcschemes/Pods-AMSlideMenuExample.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matghazaryan/AMSlideMenu2/HEAD/AMSlideMenuExample/Pods/Pods.xcodeproj/xcuserdata/artur.xcuserdatad/xcschemes/Pods-AMSlideMenuExample.xcscheme -------------------------------------------------------------------------------- /AMSlideMenuExample/Pods/Pods.xcodeproj/xcuserdata/artur.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matghazaryan/AMSlideMenu2/HEAD/AMSlideMenuExample/Pods/Pods.xcodeproj/xcuserdata/artur.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /AMSlideMenuExample/Pods/Target Support Files/AMSlideMenu/AMSlideMenu-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matghazaryan/AMSlideMenu2/HEAD/AMSlideMenuExample/Pods/Target Support Files/AMSlideMenu/AMSlideMenu-Info.plist -------------------------------------------------------------------------------- /AMSlideMenuExample/Pods/Target Support Files/AMSlideMenu/AMSlideMenu-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matghazaryan/AMSlideMenu2/HEAD/AMSlideMenuExample/Pods/Target Support Files/AMSlideMenu/AMSlideMenu-dummy.m -------------------------------------------------------------------------------- /AMSlideMenuExample/Pods/Target Support Files/AMSlideMenu/AMSlideMenu-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matghazaryan/AMSlideMenu2/HEAD/AMSlideMenuExample/Pods/Target Support Files/AMSlideMenu/AMSlideMenu-prefix.pch -------------------------------------------------------------------------------- /AMSlideMenuExample/Pods/Target Support Files/AMSlideMenu/AMSlideMenu-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matghazaryan/AMSlideMenu2/HEAD/AMSlideMenuExample/Pods/Target Support Files/AMSlideMenu/AMSlideMenu-umbrella.h -------------------------------------------------------------------------------- /AMSlideMenuExample/Pods/Target Support Files/AMSlideMenu/AMSlideMenu.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matghazaryan/AMSlideMenu2/HEAD/AMSlideMenuExample/Pods/Target Support Files/AMSlideMenu/AMSlideMenu.debug.xcconfig -------------------------------------------------------------------------------- /AMSlideMenuExample/Pods/Target Support Files/AMSlideMenu/AMSlideMenu.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matghazaryan/AMSlideMenu2/HEAD/AMSlideMenuExample/Pods/Target Support Files/AMSlideMenu/AMSlideMenu.modulemap -------------------------------------------------------------------------------- /AMSlideMenuExample/Pods/Target Support Files/AMSlideMenu/AMSlideMenu.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matghazaryan/AMSlideMenu2/HEAD/AMSlideMenuExample/Pods/Target Support Files/AMSlideMenu/AMSlideMenu.release.xcconfig -------------------------------------------------------------------------------- /AMSlideMenuExample/Pods/Target Support Files/Pods-AMSlideMenuExample/Pods-AMSlideMenuExample-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matghazaryan/AMSlideMenu2/HEAD/AMSlideMenuExample/Pods/Target Support Files/Pods-AMSlideMenuExample/Pods-AMSlideMenuExample-Info.plist -------------------------------------------------------------------------------- /AMSlideMenuExample/Pods/Target Support Files/Pods-AMSlideMenuExample/Pods-AMSlideMenuExample-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matghazaryan/AMSlideMenu2/HEAD/AMSlideMenuExample/Pods/Target Support Files/Pods-AMSlideMenuExample/Pods-AMSlideMenuExample-acknowledgements.markdown -------------------------------------------------------------------------------- /AMSlideMenuExample/Pods/Target Support Files/Pods-AMSlideMenuExample/Pods-AMSlideMenuExample-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matghazaryan/AMSlideMenu2/HEAD/AMSlideMenuExample/Pods/Target Support Files/Pods-AMSlideMenuExample/Pods-AMSlideMenuExample-acknowledgements.plist -------------------------------------------------------------------------------- /AMSlideMenuExample/Pods/Target Support Files/Pods-AMSlideMenuExample/Pods-AMSlideMenuExample-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matghazaryan/AMSlideMenu2/HEAD/AMSlideMenuExample/Pods/Target Support Files/Pods-AMSlideMenuExample/Pods-AMSlideMenuExample-dummy.m -------------------------------------------------------------------------------- /AMSlideMenuExample/Pods/Target Support Files/Pods-AMSlideMenuExample/Pods-AMSlideMenuExample-frameworks-Debug-input-files.xcfilelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matghazaryan/AMSlideMenu2/HEAD/AMSlideMenuExample/Pods/Target Support Files/Pods-AMSlideMenuExample/Pods-AMSlideMenuExample-frameworks-Debug-input-files.xcfilelist -------------------------------------------------------------------------------- /AMSlideMenuExample/Pods/Target Support Files/Pods-AMSlideMenuExample/Pods-AMSlideMenuExample-frameworks-Debug-output-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/AMSlideMenu.framework -------------------------------------------------------------------------------- /AMSlideMenuExample/Pods/Target Support Files/Pods-AMSlideMenuExample/Pods-AMSlideMenuExample-frameworks-Release-input-files.xcfilelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matghazaryan/AMSlideMenu2/HEAD/AMSlideMenuExample/Pods/Target Support Files/Pods-AMSlideMenuExample/Pods-AMSlideMenuExample-frameworks-Release-input-files.xcfilelist -------------------------------------------------------------------------------- /AMSlideMenuExample/Pods/Target Support Files/Pods-AMSlideMenuExample/Pods-AMSlideMenuExample-frameworks-Release-output-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/AMSlideMenu.framework -------------------------------------------------------------------------------- /AMSlideMenuExample/Pods/Target Support Files/Pods-AMSlideMenuExample/Pods-AMSlideMenuExample-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matghazaryan/AMSlideMenu2/HEAD/AMSlideMenuExample/Pods/Target Support Files/Pods-AMSlideMenuExample/Pods-AMSlideMenuExample-frameworks.sh -------------------------------------------------------------------------------- /AMSlideMenuExample/Pods/Target Support Files/Pods-AMSlideMenuExample/Pods-AMSlideMenuExample-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matghazaryan/AMSlideMenu2/HEAD/AMSlideMenuExample/Pods/Target Support Files/Pods-AMSlideMenuExample/Pods-AMSlideMenuExample-umbrella.h -------------------------------------------------------------------------------- /AMSlideMenuExample/Pods/Target Support Files/Pods-AMSlideMenuExample/Pods-AMSlideMenuExample.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matghazaryan/AMSlideMenu2/HEAD/AMSlideMenuExample/Pods/Target Support Files/Pods-AMSlideMenuExample/Pods-AMSlideMenuExample.debug.xcconfig -------------------------------------------------------------------------------- /AMSlideMenuExample/Pods/Target Support Files/Pods-AMSlideMenuExample/Pods-AMSlideMenuExample.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matghazaryan/AMSlideMenu2/HEAD/AMSlideMenuExample/Pods/Target Support Files/Pods-AMSlideMenuExample/Pods-AMSlideMenuExample.modulemap -------------------------------------------------------------------------------- /AMSlideMenuExample/Pods/Target Support Files/Pods-AMSlideMenuExample/Pods-AMSlideMenuExample.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matghazaryan/AMSlideMenu2/HEAD/AMSlideMenuExample/Pods/Target Support Files/Pods-AMSlideMenuExample/Pods-AMSlideMenuExample.release.xcconfig -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matghazaryan/AMSlideMenu2/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matghazaryan/AMSlideMenu2/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matghazaryan/AMSlideMenu2/HEAD/README.md --------------------------------------------------------------------------------