gitextract_gieyc_z4/ ├── .gitignore ├── .swiftpm/ │ └── xcode/ │ └── package.xcworkspace/ │ └── contents.xcworkspacedata ├── FSPageViewExample-Swift/ │ ├── FSPagerViewExample/ │ │ ├── AppDelegate.swift │ │ ├── Base.lproj/ │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ ├── BasicExampleViewController.swift │ │ ├── Info.plist │ │ ├── PageControlExampleViewController.swift │ │ └── TransformerExampleViewController.swift │ ├── FSPagerViewExample.xcodeproj/ │ │ ├── project.pbxproj │ │ └── project.xcworkspace/ │ │ └── contents.xcworkspacedata │ └── FSPagerViewExampleUITests/ │ ├── FSPagerViewExampleUITests.swift │ └── Info.plist ├── FSPagerView/ │ ├── FSPagerView/ │ │ ├── FSPagerView.h │ │ └── Info.plist │ └── FSPagerView.xcodeproj/ │ ├── project.pbxproj │ ├── project.xcworkspace/ │ │ └── contents.xcworkspacedata │ └── xcshareddata/ │ └── xcschemes/ │ └── FSPagerView.xcscheme ├── FSPagerView.podspec ├── FSPagerViewExample-Objc/ │ ├── FSPagerViewExample-Objc/ │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Base.lproj/ │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ ├── BasicExampleViewController.h │ │ ├── BasicExampleViewController.m │ │ ├── Info.plist │ │ ├── PageControlExampleViewController.h │ │ ├── PageControlExampleViewController.m │ │ ├── TransformerExampleViewController.h │ │ ├── TransformerExampleViewController.m │ │ └── main.m │ ├── FSPagerViewExample-Objc.xcodeproj/ │ │ ├── project.pbxproj │ │ └── project.xcworkspace/ │ │ └── contents.xcworkspacedata │ └── FSPagerViewExample-ObjcUITests/ │ ├── FSPagerViewExample_ObjcUITests.swift │ └── Info.plist ├── FSPagerViewExamples.xcworkspace/ │ └── contents.xcworkspacedata ├── LICENSE ├── Package.swift ├── README-OBJECTIVE-C.md ├── README.md ├── Resources/ │ └── Assets.xcassets/ │ ├── AppIcon.appiconset/ │ │ └── Contents.json │ ├── Contents.json │ ├── icon_cat.imageset/ │ │ └── Contents.json │ └── icon_footprint.imageset/ │ └── Contents.json └── Sources/ ├── FSPageControl.swift ├── FSPageViewLayout.swift ├── FSPageViewTransformer.swift ├── FSPagerCollectionView.swift ├── FSPagerView.swift ├── FSPagerViewCell.swift ├── FSPagerViewLayoutAttributes.swift ├── FSPagerViewObjcCompat.h └── FSPagerViewObjcCompat.m