├── .DS_Store ├── .gitignore ├── .swift-version ├── AZSafariCollectionViewLayout.podspec ├── Example ├── .DS_Store ├── AZTestLayout.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── afrozzaheer.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── afrozzaheer.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ │ └── xcschemes │ │ └── xcschememanagement.plist └── AZTestLayout │ ├── AZExploreLayout.swift │ ├── AZSafariLayout.swift │ ├── AppDelegate.swift │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Info.plist │ ├── TabCollectionViewCell.swift │ ├── TabCollectionViewCell.xib │ └── ViewController.swift ├── LICENSE ├── README.md └── Source ├── .DS_Store └── AZSafariCollectionViewLayout.swift /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrozZaheer/AZSafariCollectionViewLayout/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrozZaheer/AZSafariCollectionViewLayout/HEAD/.gitignore -------------------------------------------------------------------------------- /.swift-version: -------------------------------------------------------------------------------- 1 | 4.0 2 | -------------------------------------------------------------------------------- /AZSafariCollectionViewLayout.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrozZaheer/AZSafariCollectionViewLayout/HEAD/AZSafariCollectionViewLayout.podspec -------------------------------------------------------------------------------- /Example/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrozZaheer/AZSafariCollectionViewLayout/HEAD/Example/.DS_Store -------------------------------------------------------------------------------- /Example/AZTestLayout.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrozZaheer/AZSafariCollectionViewLayout/HEAD/Example/AZTestLayout.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/AZTestLayout.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrozZaheer/AZSafariCollectionViewLayout/HEAD/Example/AZTestLayout.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/AZTestLayout.xcodeproj/project.xcworkspace/xcuserdata/afrozzaheer.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrozZaheer/AZSafariCollectionViewLayout/HEAD/Example/AZTestLayout.xcodeproj/project.xcworkspace/xcuserdata/afrozzaheer.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /Example/AZTestLayout.xcodeproj/xcuserdata/afrozzaheer.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrozZaheer/AZSafariCollectionViewLayout/HEAD/Example/AZTestLayout.xcodeproj/xcuserdata/afrozzaheer.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /Example/AZTestLayout.xcodeproj/xcuserdata/afrozzaheer.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrozZaheer/AZSafariCollectionViewLayout/HEAD/Example/AZTestLayout.xcodeproj/xcuserdata/afrozzaheer.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Example/AZTestLayout/AZExploreLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrozZaheer/AZSafariCollectionViewLayout/HEAD/Example/AZTestLayout/AZExploreLayout.swift -------------------------------------------------------------------------------- /Example/AZTestLayout/AZSafariLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrozZaheer/AZSafariCollectionViewLayout/HEAD/Example/AZTestLayout/AZSafariLayout.swift -------------------------------------------------------------------------------- /Example/AZTestLayout/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrozZaheer/AZSafariCollectionViewLayout/HEAD/Example/AZTestLayout/AppDelegate.swift -------------------------------------------------------------------------------- /Example/AZTestLayout/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrozZaheer/AZSafariCollectionViewLayout/HEAD/Example/AZTestLayout/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/AZTestLayout/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrozZaheer/AZSafariCollectionViewLayout/HEAD/Example/AZTestLayout/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Example/AZTestLayout/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrozZaheer/AZSafariCollectionViewLayout/HEAD/Example/AZTestLayout/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/AZTestLayout/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrozZaheer/AZSafariCollectionViewLayout/HEAD/Example/AZTestLayout/Info.plist -------------------------------------------------------------------------------- /Example/AZTestLayout/TabCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrozZaheer/AZSafariCollectionViewLayout/HEAD/Example/AZTestLayout/TabCollectionViewCell.swift -------------------------------------------------------------------------------- /Example/AZTestLayout/TabCollectionViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrozZaheer/AZSafariCollectionViewLayout/HEAD/Example/AZTestLayout/TabCollectionViewCell.xib -------------------------------------------------------------------------------- /Example/AZTestLayout/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrozZaheer/AZSafariCollectionViewLayout/HEAD/Example/AZTestLayout/ViewController.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrozZaheer/AZSafariCollectionViewLayout/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrozZaheer/AZSafariCollectionViewLayout/HEAD/README.md -------------------------------------------------------------------------------- /Source/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrozZaheer/AZSafariCollectionViewLayout/HEAD/Source/.DS_Store -------------------------------------------------------------------------------- /Source/AZSafariCollectionViewLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AfrozZaheer/AZSafariCollectionViewLayout/HEAD/Source/AZSafariCollectionViewLayout.swift --------------------------------------------------------------------------------