gitextract__7a04txt/ ├── .github/ │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE.md │ └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .swiftlint.yml ├── .travis.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Cartfile.private ├── Example/ │ ├── Example/ │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets/ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── Simpsons/ │ │ │ │ ├── Apu_Nahasapeemapetilon.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── Bart_Simpsons.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── Contents.json │ │ │ │ ├── Homer_Simpsons.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── Lisa_Simpsons.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── Maggie_Simpsons.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── Marge_Simpsons.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── Montgomery_Burns.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── Ned_Flanders.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── Otto_Mann.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ └── default-avatar.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── TabBar/ │ │ │ │ ├── Contents.json │ │ │ │ ├── icon_bar.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── icon_button.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── icon_segmented.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ └── icon_twitter.imageset/ │ │ │ │ └── Contents.json │ │ │ └── Youtube/ │ │ │ ├── Contents.json │ │ │ ├── home.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── more_options.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── profile.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── search.imageset/ │ │ │ │ └── Contents.json │ │ │ └── trending.imageset/ │ │ │ └── Contents.json │ │ ├── BarExampleViewController.swift │ │ ├── Base.lproj/ │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Storyboard.storyboard │ │ ├── ButtonBarExampleViewController.swift │ │ ├── ChildControllers/ │ │ │ ├── ChildExampleViewController.swift │ │ │ └── TableChildExampleViewController.swift │ │ ├── Helpers/ │ │ │ ├── DataProvider.swift │ │ │ ├── PostCell.swift │ │ │ └── PostCell.xib │ │ ├── Info.plist │ │ ├── Instagram/ │ │ │ └── InstagramExampleViewController.swift │ │ ├── NavButtonBarExampleViewController.swift │ │ ├── ReloadExampleViewController.swift │ │ ├── SegmentedExampleViewController.swift │ │ ├── Spotify/ │ │ │ └── SpotifyExampleViewController.swift │ │ ├── TwitterExampleViewController.swift │ │ ├── Youtube/ │ │ │ ├── YoutubeExampleViewController.swift │ │ │ ├── YoutubeIconCell.swift │ │ │ └── YoutubeIconCell.xib │ │ └── YoutubeWithLabel/ │ │ ├── YoutubeIconWithLabelCell.swift │ │ ├── YoutubeIconWithLabelCell.xib │ │ └── YoutubeWithLabelExampleViewController.swift │ └── ExampleUITests/ │ ├── ExampleUITests.swift │ └── Info.plist ├── Example.xcodeproj/ │ ├── project.pbxproj │ └── project.xcworkspace/ │ └── contents.xcworkspacedata ├── LICENSE ├── Migration.md ├── ObjC/ │ ├── FXPageControl.h │ └── FXPageControl.m ├── Package.resolved ├── Package.swift ├── Playground.playground/ │ ├── Contents.swift │ └── contents.xcplayground ├── README.md ├── Sources/ │ └── XLPagerTabStrip/ │ ├── BarPagerTabStripViewController.swift │ ├── BarView.swift │ ├── BaseButtonBarPagerTabStripViewController.swift │ ├── ButtonBarPagerTabStripViewController.swift │ ├── ButtonBarView.swift │ ├── ButtonBarViewCell.swift │ ├── IndicatorInfo.swift │ ├── PagerTabStripBehaviour.swift │ ├── PagerTabStripError.swift │ ├── PagerTabStripViewController.swift │ ├── Resources/ │ │ └── ButtonCell.xib │ ├── SegmentedPagerTabStripViewController.swift │ ├── SwipeDirection.swift │ ├── TwitterPagerTabStripViewController.swift │ └── UIWindow+Pager.swift ├── Tests/ │ ├── Info.plist │ └── XLPagerTabStripTests.swift ├── XLPagerTabStrip/ │ ├── Info.plist │ └── XLPagerTabStrip.h ├── XLPagerTabStrip.podspec ├── XLPagerTabStrip.xcodeproj/ │ ├── project.pbxproj │ ├── project.xcworkspace/ │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata/ │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata/ │ └── xcschemes/ │ └── XLPagerTabStrip.xcscheme └── XLPagerTabStrip.xcworkspace/ ├── contents.xcworkspacedata └── xcshareddata/ └── IDEWorkspaceChecks.plist