├── LICENSE ├── README.md ├── ShortcutsCollectionView.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcuserdata │ └── hassaneldesouky.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist └── ShortcutsCollectionView ├── AppDelegate.swift ├── Assets.xcassets ├── AppIcon.appiconset │ └── Contents.json ├── Contents.json ├── Edit.imageset │ ├── Contents.json │ ├── round_more_horiz_white_24pt_1x.png │ ├── round_more_horiz_white_24pt_2x.png │ └── round_more_horiz_white_24pt_3x.png └── Folder.imageset │ ├── Contents.json │ ├── round_folder_white_36pt_1x.png │ ├── round_folder_white_36pt_2x.png │ └── round_folder_white_36pt_3x.png ├── Base.lproj └── LaunchScreen.storyboard ├── Extension.swift ├── Info.plist ├── MainCollectionViewCell.swift └── ViewController.swift /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HassanElDesouky/ShortcutsCollectionView/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HassanElDesouky/ShortcutsCollectionView/HEAD/README.md -------------------------------------------------------------------------------- /ShortcutsCollectionView.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HassanElDesouky/ShortcutsCollectionView/HEAD/ShortcutsCollectionView.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ShortcutsCollectionView.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HassanElDesouky/ShortcutsCollectionView/HEAD/ShortcutsCollectionView.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ShortcutsCollectionView.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HassanElDesouky/ShortcutsCollectionView/HEAD/ShortcutsCollectionView.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ShortcutsCollectionView.xcodeproj/xcuserdata/hassaneldesouky.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HassanElDesouky/ShortcutsCollectionView/HEAD/ShortcutsCollectionView.xcodeproj/xcuserdata/hassaneldesouky.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /ShortcutsCollectionView/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HassanElDesouky/ShortcutsCollectionView/HEAD/ShortcutsCollectionView/AppDelegate.swift -------------------------------------------------------------------------------- /ShortcutsCollectionView/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HassanElDesouky/ShortcutsCollectionView/HEAD/ShortcutsCollectionView/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ShortcutsCollectionView/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HassanElDesouky/ShortcutsCollectionView/HEAD/ShortcutsCollectionView/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /ShortcutsCollectionView/Assets.xcassets/Edit.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HassanElDesouky/ShortcutsCollectionView/HEAD/ShortcutsCollectionView/Assets.xcassets/Edit.imageset/Contents.json -------------------------------------------------------------------------------- /ShortcutsCollectionView/Assets.xcassets/Edit.imageset/round_more_horiz_white_24pt_1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HassanElDesouky/ShortcutsCollectionView/HEAD/ShortcutsCollectionView/Assets.xcassets/Edit.imageset/round_more_horiz_white_24pt_1x.png -------------------------------------------------------------------------------- /ShortcutsCollectionView/Assets.xcassets/Edit.imageset/round_more_horiz_white_24pt_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HassanElDesouky/ShortcutsCollectionView/HEAD/ShortcutsCollectionView/Assets.xcassets/Edit.imageset/round_more_horiz_white_24pt_2x.png -------------------------------------------------------------------------------- /ShortcutsCollectionView/Assets.xcassets/Edit.imageset/round_more_horiz_white_24pt_3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HassanElDesouky/ShortcutsCollectionView/HEAD/ShortcutsCollectionView/Assets.xcassets/Edit.imageset/round_more_horiz_white_24pt_3x.png -------------------------------------------------------------------------------- /ShortcutsCollectionView/Assets.xcassets/Folder.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HassanElDesouky/ShortcutsCollectionView/HEAD/ShortcutsCollectionView/Assets.xcassets/Folder.imageset/Contents.json -------------------------------------------------------------------------------- /ShortcutsCollectionView/Assets.xcassets/Folder.imageset/round_folder_white_36pt_1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HassanElDesouky/ShortcutsCollectionView/HEAD/ShortcutsCollectionView/Assets.xcassets/Folder.imageset/round_folder_white_36pt_1x.png -------------------------------------------------------------------------------- /ShortcutsCollectionView/Assets.xcassets/Folder.imageset/round_folder_white_36pt_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HassanElDesouky/ShortcutsCollectionView/HEAD/ShortcutsCollectionView/Assets.xcassets/Folder.imageset/round_folder_white_36pt_2x.png -------------------------------------------------------------------------------- /ShortcutsCollectionView/Assets.xcassets/Folder.imageset/round_folder_white_36pt_3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HassanElDesouky/ShortcutsCollectionView/HEAD/ShortcutsCollectionView/Assets.xcassets/Folder.imageset/round_folder_white_36pt_3x.png -------------------------------------------------------------------------------- /ShortcutsCollectionView/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HassanElDesouky/ShortcutsCollectionView/HEAD/ShortcutsCollectionView/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ShortcutsCollectionView/Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HassanElDesouky/ShortcutsCollectionView/HEAD/ShortcutsCollectionView/Extension.swift -------------------------------------------------------------------------------- /ShortcutsCollectionView/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HassanElDesouky/ShortcutsCollectionView/HEAD/ShortcutsCollectionView/Info.plist -------------------------------------------------------------------------------- /ShortcutsCollectionView/MainCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HassanElDesouky/ShortcutsCollectionView/HEAD/ShortcutsCollectionView/MainCollectionViewCell.swift -------------------------------------------------------------------------------- /ShortcutsCollectionView/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HassanElDesouky/ShortcutsCollectionView/HEAD/ShortcutsCollectionView/ViewController.swift --------------------------------------------------------------------------------