gitextract_0otwtvwj/ ├── .gitignore ├── Example/ │ ├── Base.lproj/ │ │ └── LaunchScreen.storyboard │ ├── Podfile │ ├── Pods/ │ │ ├── Local Podspecs/ │ │ │ └── StickyHeaderFlowLayout.podspec.json │ │ ├── Pods.xcodeproj/ │ │ │ └── project.pbxproj │ │ └── Target Support Files/ │ │ ├── Pods-Example/ │ │ │ ├── Pods-Example-Info.plist │ │ │ ├── Pods-Example-acknowledgements.markdown │ │ │ ├── Pods-Example-acknowledgements.plist │ │ │ ├── Pods-Example-dummy.m │ │ │ ├── Pods-Example-frameworks.sh │ │ │ ├── Pods-Example-umbrella.h │ │ │ ├── Pods-Example.debug.xcconfig │ │ │ ├── Pods-Example.modulemap │ │ │ └── Pods-Example.release.xcconfig │ │ └── StickyHeaderFlowLayout/ │ │ ├── StickyHeaderFlowLayout-Info.plist │ │ ├── StickyHeaderFlowLayout-dummy.m │ │ ├── StickyHeaderFlowLayout-prefix.pch │ │ ├── StickyHeaderFlowLayout-umbrella.h │ │ ├── StickyHeaderFlowLayout.modulemap │ │ └── StickyHeaderFlowLayout.xcconfig │ ├── StickyHeaderFlowLayout/ │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets/ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ └── success-baby.imageset/ │ │ │ └── Contents.json │ │ ├── CollectionParallaxHeader.swift │ │ ├── CollectionViewCell.swift │ │ ├── CollectionViewController.swift │ │ ├── CollectionViewSectionHeader.swift │ │ ├── Info.plist │ │ └── LaunchScreen.storyboard │ ├── StickyHeaderFlowLayout.xcodeproj/ │ │ ├── project.pbxproj │ │ ├── project.xcworkspace/ │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata/ │ │ └── xcschemes/ │ │ └── Example.xcscheme │ └── StickyHeaderFlowLayout.xcworkspace/ │ ├── contents.xcworkspacedata │ └── xcshareddata/ │ └── IDEWorkspaceChecks.plist ├── LICENSE ├── README.md ├── Resources/ │ └── design.sketch ├── StickyHeaderFlowLayout/ │ ├── Assets/ │ │ └── .gitkeep │ └── Classes/ │ ├── .gitkeep │ ├── StickyHeaderFlowLayout.swift │ └── StickyHeaderFlowLayoutAttributes.swift └── StickyHeaderFlowLayout.podspec