gitextract_sc4dhe13/ ├── .gitignore ├── .swift-version ├── .travis.yml ├── Example/ │ ├── FlourishUI/ │ │ ├── AppDelegate.swift │ │ ├── Base.lproj/ │ │ │ └── LaunchScreen.xib │ │ ├── Images.xcassets/ │ │ │ └── AppIcon.appiconset/ │ │ │ └── Contents.json │ │ ├── Info.plist │ │ ├── Main.storyboard │ │ └── ViewController.swift │ ├── FlourishUI.xcodeproj/ │ │ ├── project.pbxproj │ │ ├── project.xcworkspace/ │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata/ │ │ └── xcschemes/ │ │ └── FlourishUI-Example.xcscheme │ ├── FlourishUI.xcworkspace/ │ │ └── contents.xcworkspacedata │ ├── Podfile │ ├── Pods/ │ │ ├── Local Podspecs/ │ │ │ └── FlourishUI.podspec.json │ │ ├── Pods.xcodeproj/ │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace/ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata/ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── xcshareddata/ │ │ │ └── xcschemes/ │ │ │ └── FlourishUI.xcscheme │ │ └── Target Support Files/ │ │ ├── FlourishUI/ │ │ │ ├── FlourishUI-dummy.m │ │ │ ├── FlourishUI-prefix.pch │ │ │ ├── FlourishUI-umbrella.h │ │ │ ├── FlourishUI.modulemap │ │ │ ├── FlourishUI.xcconfig │ │ │ ├── Info.plist │ │ │ └── ResourceBundle-FlourishUI-Info.plist │ │ ├── Pods-FlourishUI_Example/ │ │ │ ├── Info.plist │ │ │ ├── Pods-FlourishUI_Example-acknowledgements.markdown │ │ │ ├── Pods-FlourishUI_Example-acknowledgements.plist │ │ │ ├── Pods-FlourishUI_Example-dummy.m │ │ │ ├── Pods-FlourishUI_Example-frameworks.sh │ │ │ ├── Pods-FlourishUI_Example-resources.sh │ │ │ ├── Pods-FlourishUI_Example-umbrella.h │ │ │ ├── Pods-FlourishUI_Example.debug.xcconfig │ │ │ ├── Pods-FlourishUI_Example.modulemap │ │ │ └── Pods-FlourishUI_Example.release.xcconfig │ │ └── Pods-FlourishUI_Tests/ │ │ ├── Info.plist │ │ ├── Pods-FlourishUI_Tests-acknowledgements.markdown │ │ ├── Pods-FlourishUI_Tests-acknowledgements.plist │ │ ├── Pods-FlourishUI_Tests-dummy.m │ │ ├── Pods-FlourishUI_Tests-frameworks.sh │ │ ├── Pods-FlourishUI_Tests-resources.sh │ │ ├── Pods-FlourishUI_Tests-umbrella.h │ │ ├── Pods-FlourishUI_Tests.debug.xcconfig │ │ ├── Pods-FlourishUI_Tests.modulemap │ │ └── Pods-FlourishUI_Tests.release.xcconfig │ └── Tests/ │ └── Info.plist ├── FlourishUI.podspec ├── LICENSE ├── Pod/ │ ├── Assets/ │ │ └── .gitkeep │ └── Classes/ │ ├── .gitkeep │ ├── Button.swift │ ├── InputText.swift │ ├── Modal.swift │ ├── ToggleSwitch.swift │ └── UIColor.swift └── README.md