├── .gitignore ├── LICENSE ├── README.md ├── SquareFlowLayout.podspec └── SquareFlowLayout ├── Example └── SquareFlowLayout │ ├── Podfile │ ├── Podfile.lock │ ├── SquareFlowLayout │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── ImageLoader.swift │ ├── Info.plist │ ├── PhotoCollectionViewCell.swift │ ├── PhotoCollectionViewCell.xib │ └── ViewController.swift │ ├── SquareFlowLayoutExample.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── taraschernyshenko.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── taraschernyshenko.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist │ └── SquareFlowLayoutExample.xcworkspace │ └── contents.xcworkspacedata ├── Screenshots ├── SquareFlowLayout-1.png ├── SquareFlowLayout-2.png ├── SquareFlowLayout-3.png ├── SquareFlowLayout-4.png └── logo.png └── Source └── Classes └── SquareFlowLayout.swift /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChernyshenkoTaras/SquareFlowLayout/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChernyshenkoTaras/SquareFlowLayout/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChernyshenkoTaras/SquareFlowLayout/HEAD/README.md -------------------------------------------------------------------------------- /SquareFlowLayout.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChernyshenkoTaras/SquareFlowLayout/HEAD/SquareFlowLayout.podspec -------------------------------------------------------------------------------- /SquareFlowLayout/Example/SquareFlowLayout/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChernyshenkoTaras/SquareFlowLayout/HEAD/SquareFlowLayout/Example/SquareFlowLayout/Podfile -------------------------------------------------------------------------------- /SquareFlowLayout/Example/SquareFlowLayout/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChernyshenkoTaras/SquareFlowLayout/HEAD/SquareFlowLayout/Example/SquareFlowLayout/Podfile.lock -------------------------------------------------------------------------------- /SquareFlowLayout/Example/SquareFlowLayout/SquareFlowLayout/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChernyshenkoTaras/SquareFlowLayout/HEAD/SquareFlowLayout/Example/SquareFlowLayout/SquareFlowLayout/AppDelegate.swift -------------------------------------------------------------------------------- /SquareFlowLayout/Example/SquareFlowLayout/SquareFlowLayout/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChernyshenkoTaras/SquareFlowLayout/HEAD/SquareFlowLayout/Example/SquareFlowLayout/SquareFlowLayout/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /SquareFlowLayout/Example/SquareFlowLayout/SquareFlowLayout/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChernyshenkoTaras/SquareFlowLayout/HEAD/SquareFlowLayout/Example/SquareFlowLayout/SquareFlowLayout/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /SquareFlowLayout/Example/SquareFlowLayout/SquareFlowLayout/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChernyshenkoTaras/SquareFlowLayout/HEAD/SquareFlowLayout/Example/SquareFlowLayout/SquareFlowLayout/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /SquareFlowLayout/Example/SquareFlowLayout/SquareFlowLayout/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChernyshenkoTaras/SquareFlowLayout/HEAD/SquareFlowLayout/Example/SquareFlowLayout/SquareFlowLayout/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /SquareFlowLayout/Example/SquareFlowLayout/SquareFlowLayout/ImageLoader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChernyshenkoTaras/SquareFlowLayout/HEAD/SquareFlowLayout/Example/SquareFlowLayout/SquareFlowLayout/ImageLoader.swift -------------------------------------------------------------------------------- /SquareFlowLayout/Example/SquareFlowLayout/SquareFlowLayout/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChernyshenkoTaras/SquareFlowLayout/HEAD/SquareFlowLayout/Example/SquareFlowLayout/SquareFlowLayout/Info.plist -------------------------------------------------------------------------------- /SquareFlowLayout/Example/SquareFlowLayout/SquareFlowLayout/PhotoCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChernyshenkoTaras/SquareFlowLayout/HEAD/SquareFlowLayout/Example/SquareFlowLayout/SquareFlowLayout/PhotoCollectionViewCell.swift -------------------------------------------------------------------------------- /SquareFlowLayout/Example/SquareFlowLayout/SquareFlowLayout/PhotoCollectionViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChernyshenkoTaras/SquareFlowLayout/HEAD/SquareFlowLayout/Example/SquareFlowLayout/SquareFlowLayout/PhotoCollectionViewCell.xib -------------------------------------------------------------------------------- /SquareFlowLayout/Example/SquareFlowLayout/SquareFlowLayout/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChernyshenkoTaras/SquareFlowLayout/HEAD/SquareFlowLayout/Example/SquareFlowLayout/SquareFlowLayout/ViewController.swift -------------------------------------------------------------------------------- /SquareFlowLayout/Example/SquareFlowLayout/SquareFlowLayoutExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChernyshenkoTaras/SquareFlowLayout/HEAD/SquareFlowLayout/Example/SquareFlowLayout/SquareFlowLayoutExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SquareFlowLayout/Example/SquareFlowLayout/SquareFlowLayoutExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChernyshenkoTaras/SquareFlowLayout/HEAD/SquareFlowLayout/Example/SquareFlowLayout/SquareFlowLayoutExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /SquareFlowLayout/Example/SquareFlowLayout/SquareFlowLayoutExample.xcodeproj/project.xcworkspace/xcuserdata/taraschernyshenko.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChernyshenkoTaras/SquareFlowLayout/HEAD/SquareFlowLayout/Example/SquareFlowLayout/SquareFlowLayoutExample.xcodeproj/project.xcworkspace/xcuserdata/taraschernyshenko.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /SquareFlowLayout/Example/SquareFlowLayout/SquareFlowLayoutExample.xcodeproj/xcuserdata/taraschernyshenko.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChernyshenkoTaras/SquareFlowLayout/HEAD/SquareFlowLayout/Example/SquareFlowLayout/SquareFlowLayoutExample.xcodeproj/xcuserdata/taraschernyshenko.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /SquareFlowLayout/Example/SquareFlowLayout/SquareFlowLayoutExample.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChernyshenkoTaras/SquareFlowLayout/HEAD/SquareFlowLayout/Example/SquareFlowLayout/SquareFlowLayoutExample.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /SquareFlowLayout/Screenshots/SquareFlowLayout-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChernyshenkoTaras/SquareFlowLayout/HEAD/SquareFlowLayout/Screenshots/SquareFlowLayout-1.png -------------------------------------------------------------------------------- /SquareFlowLayout/Screenshots/SquareFlowLayout-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChernyshenkoTaras/SquareFlowLayout/HEAD/SquareFlowLayout/Screenshots/SquareFlowLayout-2.png -------------------------------------------------------------------------------- /SquareFlowLayout/Screenshots/SquareFlowLayout-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChernyshenkoTaras/SquareFlowLayout/HEAD/SquareFlowLayout/Screenshots/SquareFlowLayout-3.png -------------------------------------------------------------------------------- /SquareFlowLayout/Screenshots/SquareFlowLayout-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChernyshenkoTaras/SquareFlowLayout/HEAD/SquareFlowLayout/Screenshots/SquareFlowLayout-4.png -------------------------------------------------------------------------------- /SquareFlowLayout/Screenshots/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChernyshenkoTaras/SquareFlowLayout/HEAD/SquareFlowLayout/Screenshots/logo.png -------------------------------------------------------------------------------- /SquareFlowLayout/Source/Classes/SquareFlowLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChernyshenkoTaras/SquareFlowLayout/HEAD/SquareFlowLayout/Source/Classes/SquareFlowLayout.swift --------------------------------------------------------------------------------