gitextract_5pm0eoic/ ├── .gitignore ├── .travis.yml ├── LICENSE ├── PageController/ │ ├── FloodView.swift │ ├── MenuItem.swift │ ├── MenuView.swift │ ├── PageController.swift │ └── ProgressView.swift ├── README.md ├── StoryboardExample/ │ ├── StoryboardExample/ │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets/ │ │ │ └── AppIcon.appiconset/ │ │ │ └── Contents.json │ │ ├── Base.lproj/ │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ ├── Info.plist │ │ ├── ParentController/ │ │ │ └── CustomPageController.swift │ │ ├── TableViewController.swift │ │ └── ViewController.swift │ ├── StoryboardExample.xcodeproj/ │ │ ├── project.pbxproj │ │ ├── project.xcworkspace/ │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata/ │ │ └── xcschemes/ │ │ └── StoryboardExample.xcscheme │ ├── StoryboardExampleTests/ │ │ ├── Info.plist │ │ └── StoryboardExampleTests.swift │ └── StoryboardExampleUITests/ │ ├── Info.plist │ └── StoryboardExampleUITests.swift ├── WMPageController-Swift/ │ ├── AppDelegate.swift │ ├── Assets.xcassets/ │ │ └── AppIcon.appiconset/ │ │ └── Contents.json │ ├── Base.lproj/ │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ ├── TableViewController.swift │ └── ViewController.swift ├── WMPageController-Swift.podspec ├── WMPageController-Swift.xcodeproj/ │ ├── project.pbxproj │ ├── project.xcworkspace/ │ │ └── contents.xcworkspacedata │ └── xcshareddata/ │ └── xcschemes/ │ ├── WMPageController-Swift.xcscheme │ └── WMPageControllerSwiftFramework.xcscheme ├── WMPageController-SwiftTests/ │ ├── Info.plist │ └── WMPageController_SwiftTests.swift ├── WMPageController-SwiftUITests/ │ ├── Info.plist │ └── WMPageController_SwiftUITests.swift └── WMPageControllerSwiftFramework/ ├── Info.plist └── WMPageControllerSwiftFramework.h