gitextract_myk_b_mt/ ├── .github/ │ ├── dependabot.yml │ └── workflows/ │ ├── ci.yml │ ├── danger.yml │ ├── pod-lint.yml │ └── spm.yml ├── .gitignore ├── .swiftlint.yml ├── CHANGELOG.md ├── Dangerfile ├── Example/ │ ├── ExampleApp/ │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets/ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ └── ic_dismiss.imageset/ │ │ │ └── Contents.json │ │ ├── Base.lproj/ │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ ├── Info.plist │ │ ├── MainViewController.swift │ │ └── RedViewController.swift │ ├── ExampleApp.xcodeproj/ │ │ ├── project.pbxproj │ │ ├── project.xcworkspace/ │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata/ │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcshareddata/ │ │ ├── IDETemplateMacros.plist │ │ └── xcschemes/ │ │ └── ExampleApp.xcscheme │ └── ExampleAppUITests/ │ ├── ExampleAppUITests.swift │ └── Info.plist ├── Gemfile ├── Guides/ │ └── Getting Started.md ├── LICENSE ├── Package.swift ├── PresenterKit.podspec ├── PresenterKit.xcodeproj/ │ ├── project.pbxproj │ ├── project.xcworkspace/ │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata/ │ │ ├── IDEWorkspaceChecks.plist │ │ └── WorkspaceSettings.xcsettings │ └── xcshareddata/ │ ├── IDETemplateMacros.plist │ └── xcschemes/ │ └── PresenterKit.xcscheme ├── README.md ├── Sources/ │ ├── DismissButtonConfig.swift │ ├── HalfModalPresentationController.swift │ ├── Info.plist │ ├── PresentationType.swift │ ├── UINavigationController+Extensions.swift │ └── UIViewController+Extensions.swift ├── Tests/ │ ├── Info.plist │ └── PresenterKitTests.swift ├── docs/ │ ├── Classes.html │ ├── Enums/ │ │ ├── NavigationStyle.html │ │ └── PresentationType.html │ ├── Enums.html │ ├── Extensions/ │ │ ├── UIBarButtonItem.html │ │ ├── UINavigationController.html │ │ └── UIViewController.html │ ├── Extensions.html │ ├── Guides.html │ ├── Structs/ │ │ ├── DismissButtonConfig/ │ │ │ ├── Content.html │ │ │ ├── Location.html │ │ │ └── Style.html │ │ ├── DismissButtonConfig.html │ │ ├── PopoverConfig/ │ │ │ └── Source.html │ │ └── PopoverConfig.html │ ├── Structs.html │ ├── css/ │ │ ├── highlight.css │ │ └── jazzy.css │ ├── getting-started.html │ ├── index.html │ ├── js/ │ │ ├── jazzy.js │ │ ├── jazzy.search.js │ │ └── typeahead.jquery.js │ ├── search.json │ └── undocumented.json └── scripts/ ├── build_docs.zsh └── lint.zsh