├── .gitignore ├── CenterFlowLayoutDemo.xcodeproj └── project.pbxproj ├── CenterFlowLayoutDemo ├── AppDelegate.swift ├── Assets │ └── Assets.xcassets │ │ ├── 1.imageset │ │ ├── Contents.json │ │ └── tigers-82a.jpg │ │ ├── 2.imageset │ │ ├── Contents.json │ │ └── lions-65a.jpg │ │ ├── 3.imageset │ │ ├── Contents.json │ │ └── cats-150a.jpg │ │ ├── 4.imageset │ │ ├── Contents.json │ │ └── cheetah-6a.jpg │ │ ├── 5.imageset │ │ ├── Contents.json │ │ └── dogs-239a.jpg │ │ ├── 6.imageset │ │ ├── Contents.json │ │ └── horses-77a.jpg │ │ ├── 7.imageset │ │ ├── Contents.json │ │ └── dogs-240a.jpg │ │ ├── AppIcon.appiconset │ │ └── Contents.json │ │ └── Contents.json ├── Classes │ └── ViewController.swift ├── Info.plist ├── OtherClasses │ └── YZCenterFlowLayout.swift ├── Storyboards │ └── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard └── Xibs │ └── CategoryColCell.swift ├── README.md └── Screenshot ├── preview.gif └── screenshot_1.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yudiz-solutions/YZCenterFlowLayout/HEAD/.gitignore -------------------------------------------------------------------------------- /CenterFlowLayoutDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yudiz-solutions/YZCenterFlowLayout/HEAD/CenterFlowLayoutDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /CenterFlowLayoutDemo/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yudiz-solutions/YZCenterFlowLayout/HEAD/CenterFlowLayoutDemo/AppDelegate.swift -------------------------------------------------------------------------------- /CenterFlowLayoutDemo/Assets/Assets.xcassets/1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yudiz-solutions/YZCenterFlowLayout/HEAD/CenterFlowLayoutDemo/Assets/Assets.xcassets/1.imageset/Contents.json -------------------------------------------------------------------------------- /CenterFlowLayoutDemo/Assets/Assets.xcassets/1.imageset/tigers-82a.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yudiz-solutions/YZCenterFlowLayout/HEAD/CenterFlowLayoutDemo/Assets/Assets.xcassets/1.imageset/tigers-82a.jpg -------------------------------------------------------------------------------- /CenterFlowLayoutDemo/Assets/Assets.xcassets/2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yudiz-solutions/YZCenterFlowLayout/HEAD/CenterFlowLayoutDemo/Assets/Assets.xcassets/2.imageset/Contents.json -------------------------------------------------------------------------------- /CenterFlowLayoutDemo/Assets/Assets.xcassets/2.imageset/lions-65a.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yudiz-solutions/YZCenterFlowLayout/HEAD/CenterFlowLayoutDemo/Assets/Assets.xcassets/2.imageset/lions-65a.jpg -------------------------------------------------------------------------------- /CenterFlowLayoutDemo/Assets/Assets.xcassets/3.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yudiz-solutions/YZCenterFlowLayout/HEAD/CenterFlowLayoutDemo/Assets/Assets.xcassets/3.imageset/Contents.json -------------------------------------------------------------------------------- /CenterFlowLayoutDemo/Assets/Assets.xcassets/3.imageset/cats-150a.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yudiz-solutions/YZCenterFlowLayout/HEAD/CenterFlowLayoutDemo/Assets/Assets.xcassets/3.imageset/cats-150a.jpg -------------------------------------------------------------------------------- /CenterFlowLayoutDemo/Assets/Assets.xcassets/4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yudiz-solutions/YZCenterFlowLayout/HEAD/CenterFlowLayoutDemo/Assets/Assets.xcassets/4.imageset/Contents.json -------------------------------------------------------------------------------- /CenterFlowLayoutDemo/Assets/Assets.xcassets/4.imageset/cheetah-6a.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yudiz-solutions/YZCenterFlowLayout/HEAD/CenterFlowLayoutDemo/Assets/Assets.xcassets/4.imageset/cheetah-6a.jpg -------------------------------------------------------------------------------- /CenterFlowLayoutDemo/Assets/Assets.xcassets/5.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yudiz-solutions/YZCenterFlowLayout/HEAD/CenterFlowLayoutDemo/Assets/Assets.xcassets/5.imageset/Contents.json -------------------------------------------------------------------------------- /CenterFlowLayoutDemo/Assets/Assets.xcassets/5.imageset/dogs-239a.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yudiz-solutions/YZCenterFlowLayout/HEAD/CenterFlowLayoutDemo/Assets/Assets.xcassets/5.imageset/dogs-239a.jpg -------------------------------------------------------------------------------- /CenterFlowLayoutDemo/Assets/Assets.xcassets/6.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yudiz-solutions/YZCenterFlowLayout/HEAD/CenterFlowLayoutDemo/Assets/Assets.xcassets/6.imageset/Contents.json -------------------------------------------------------------------------------- /CenterFlowLayoutDemo/Assets/Assets.xcassets/6.imageset/horses-77a.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yudiz-solutions/YZCenterFlowLayout/HEAD/CenterFlowLayoutDemo/Assets/Assets.xcassets/6.imageset/horses-77a.jpg -------------------------------------------------------------------------------- /CenterFlowLayoutDemo/Assets/Assets.xcassets/7.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yudiz-solutions/YZCenterFlowLayout/HEAD/CenterFlowLayoutDemo/Assets/Assets.xcassets/7.imageset/Contents.json -------------------------------------------------------------------------------- /CenterFlowLayoutDemo/Assets/Assets.xcassets/7.imageset/dogs-240a.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yudiz-solutions/YZCenterFlowLayout/HEAD/CenterFlowLayoutDemo/Assets/Assets.xcassets/7.imageset/dogs-240a.jpg -------------------------------------------------------------------------------- /CenterFlowLayoutDemo/Assets/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yudiz-solutions/YZCenterFlowLayout/HEAD/CenterFlowLayoutDemo/Assets/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /CenterFlowLayoutDemo/Assets/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yudiz-solutions/YZCenterFlowLayout/HEAD/CenterFlowLayoutDemo/Assets/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /CenterFlowLayoutDemo/Classes/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yudiz-solutions/YZCenterFlowLayout/HEAD/CenterFlowLayoutDemo/Classes/ViewController.swift -------------------------------------------------------------------------------- /CenterFlowLayoutDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yudiz-solutions/YZCenterFlowLayout/HEAD/CenterFlowLayoutDemo/Info.plist -------------------------------------------------------------------------------- /CenterFlowLayoutDemo/OtherClasses/YZCenterFlowLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yudiz-solutions/YZCenterFlowLayout/HEAD/CenterFlowLayoutDemo/OtherClasses/YZCenterFlowLayout.swift -------------------------------------------------------------------------------- /CenterFlowLayoutDemo/Storyboards/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yudiz-solutions/YZCenterFlowLayout/HEAD/CenterFlowLayoutDemo/Storyboards/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /CenterFlowLayoutDemo/Storyboards/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yudiz-solutions/YZCenterFlowLayout/HEAD/CenterFlowLayoutDemo/Storyboards/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /CenterFlowLayoutDemo/Xibs/CategoryColCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yudiz-solutions/YZCenterFlowLayout/HEAD/CenterFlowLayoutDemo/Xibs/CategoryColCell.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yudiz-solutions/YZCenterFlowLayout/HEAD/README.md -------------------------------------------------------------------------------- /Screenshot/preview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yudiz-solutions/YZCenterFlowLayout/HEAD/Screenshot/preview.gif -------------------------------------------------------------------------------- /Screenshot/screenshot_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yudiz-solutions/YZCenterFlowLayout/HEAD/Screenshot/screenshot_1.png --------------------------------------------------------------------------------