├── .gitignore ├── .travis.yml ├── CONTRIBUTING.md ├── Example ├── Podfile ├── Podfile.lock ├── Pods │ ├── Local Podspecs │ │ └── PowerUpSwift.podspec.json │ ├── Manifest.lock │ ├── Pods.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── Target Support Files │ │ ├── Pods-PowerUpSwift_Example │ │ ├── Info.plist │ │ ├── Pods-PowerUpSwift_Example-Info.plist │ │ ├── Pods-PowerUpSwift_Example-acknowledgements.markdown │ │ ├── Pods-PowerUpSwift_Example-acknowledgements.plist │ │ ├── Pods-PowerUpSwift_Example-dummy.m │ │ ├── Pods-PowerUpSwift_Example-frameworks.sh │ │ ├── Pods-PowerUpSwift_Example-resources.sh │ │ ├── Pods-PowerUpSwift_Example-umbrella.h │ │ ├── Pods-PowerUpSwift_Example.debug.xcconfig │ │ ├── Pods-PowerUpSwift_Example.modulemap │ │ └── Pods-PowerUpSwift_Example.release.xcconfig │ │ ├── Pods-PowerUpSwift_Tests │ │ ├── Info.plist │ │ ├── Pods-PowerUpSwift_Tests-Info.plist │ │ ├── Pods-PowerUpSwift_Tests-acknowledgements.markdown │ │ ├── Pods-PowerUpSwift_Tests-acknowledgements.plist │ │ ├── Pods-PowerUpSwift_Tests-dummy.m │ │ ├── Pods-PowerUpSwift_Tests-frameworks.sh │ │ ├── Pods-PowerUpSwift_Tests-resources.sh │ │ ├── Pods-PowerUpSwift_Tests-umbrella.h │ │ ├── Pods-PowerUpSwift_Tests.debug.xcconfig │ │ ├── Pods-PowerUpSwift_Tests.modulemap │ │ └── Pods-PowerUpSwift_Tests.release.xcconfig │ │ └── PowerUpSwift │ │ ├── Info.plist │ │ ├── PowerUpSwift-Info.plist │ │ ├── PowerUpSwift-dummy.m │ │ ├── PowerUpSwift-prefix.pch │ │ ├── PowerUpSwift-umbrella.h │ │ ├── PowerUpSwift.debug.xcconfig │ │ ├── PowerUpSwift.modulemap │ │ ├── PowerUpSwift.release.xcconfig │ │ └── PowerUpSwift.xcconfig ├── PowerUpSwift.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata │ │ └── xcschemes │ │ └── PowerUpSwift-Example.xcscheme ├── PowerUpSwift.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── WorkspaceSettings.xcsettings ├── PowerUpSwift │ ├── AppDelegate.swift │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ └── ViewController.swift └── Tests │ ├── BoolTests.swift │ ├── Info.plist │ └── StringTests.swift ├── LICENSE ├── MIGRATION.md ├── Package.swift ├── PowerUpSwift.podspec ├── PowerUpSwift ├── Assets │ └── .gitkeep └── Classes │ ├── .gitkeep │ ├── Classes │ ├── PUBarItem.swift │ ├── PUBaseTextField.swift │ ├── PUButton.swift │ ├── PUCollectionView.swift │ ├── PUImageView.swift │ ├── PULabel.swift │ ├── PULoadingButton.swift │ ├── PUNavigationItem.swift │ ├── PUSegmentedControl.swift │ ├── PUTableView.swift │ ├── PUTextField.swift │ ├── PUTextView.swift │ ├── PUUnderlineTextField.swift │ ├── PUView.swift │ ├── PUVisualEffectView.swift │ └── Protocols │ │ ├── PUInspectable.swift │ │ └── PULocalizable.swift │ └── Extensions │ ├── CoreLocation │ └── CLPlacemark.swift │ ├── Foundation │ ├── Bundle.swift │ ├── Data.swift │ ├── Dictionary.swift │ ├── Optional.swift │ ├── String.swift │ ├── URL.swift │ ├── URLRequest.swift │ └── URLResponse.swift │ └── UIKit │ ├── NSLayoutConstraint.swift │ ├── UIButton.swift │ ├── UICollectionViewCell.swift │ ├── UIColor.swift │ ├── UINavigationController.swift │ ├── UIRefreshControl.swift │ ├── UITableView.swift │ ├── UITableViewCell.swift │ ├── UITextView.swift │ └── UIViewController.swift ├── README.md ├── Screenshots ├── Demo.gif ├── PowerUpSwift.afdesign ├── PowerUpSwift.png ├── code-screenshot-orange.png └── code-screenshot-purple.png └── _Pods.xcodeproj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerUpX/PowerUpSwift/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerUpX/PowerUpSwift/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerUpX/PowerUpSwift/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerUpX/PowerUpSwift/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerUpX/PowerUpSwift/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/PowerUpSwift.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerUpX/PowerUpSwift/HEAD/Example/Pods/Local Podspecs/PowerUpSwift.podspec.json -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerUpX/PowerUpSwift/HEAD/Example/Pods/Manifest.lock -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerUpX/PowerUpSwift/HEAD/Example/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerUpX/PowerUpSwift/HEAD/Example/Pods/Pods.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerUpX/PowerUpSwift/HEAD/Example/Pods/Pods.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-PowerUpSwift_Example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerUpX/PowerUpSwift/HEAD/Example/Pods/Target Support Files/Pods-PowerUpSwift_Example/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-PowerUpSwift_Example/Pods-PowerUpSwift_Example-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerUpX/PowerUpSwift/HEAD/Example/Pods/Target Support Files/Pods-PowerUpSwift_Example/Pods-PowerUpSwift_Example-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-PowerUpSwift_Example/Pods-PowerUpSwift_Example-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerUpX/PowerUpSwift/HEAD/Example/Pods/Target Support Files/Pods-PowerUpSwift_Example/Pods-PowerUpSwift_Example-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-PowerUpSwift_Example/Pods-PowerUpSwift_Example-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerUpX/PowerUpSwift/HEAD/Example/Pods/Target Support Files/Pods-PowerUpSwift_Example/Pods-PowerUpSwift_Example-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-PowerUpSwift_Example/Pods-PowerUpSwift_Example-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerUpX/PowerUpSwift/HEAD/Example/Pods/Target Support Files/Pods-PowerUpSwift_Example/Pods-PowerUpSwift_Example-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-PowerUpSwift_Example/Pods-PowerUpSwift_Example-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerUpX/PowerUpSwift/HEAD/Example/Pods/Target Support Files/Pods-PowerUpSwift_Example/Pods-PowerUpSwift_Example-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-PowerUpSwift_Example/Pods-PowerUpSwift_Example-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerUpX/PowerUpSwift/HEAD/Example/Pods/Target Support Files/Pods-PowerUpSwift_Example/Pods-PowerUpSwift_Example-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-PowerUpSwift_Example/Pods-PowerUpSwift_Example-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerUpX/PowerUpSwift/HEAD/Example/Pods/Target Support Files/Pods-PowerUpSwift_Example/Pods-PowerUpSwift_Example-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-PowerUpSwift_Example/Pods-PowerUpSwift_Example.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerUpX/PowerUpSwift/HEAD/Example/Pods/Target Support Files/Pods-PowerUpSwift_Example/Pods-PowerUpSwift_Example.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-PowerUpSwift_Example/Pods-PowerUpSwift_Example.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerUpX/PowerUpSwift/HEAD/Example/Pods/Target Support Files/Pods-PowerUpSwift_Example/Pods-PowerUpSwift_Example.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-PowerUpSwift_Example/Pods-PowerUpSwift_Example.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerUpX/PowerUpSwift/HEAD/Example/Pods/Target Support Files/Pods-PowerUpSwift_Example/Pods-PowerUpSwift_Example.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-PowerUpSwift_Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerUpX/PowerUpSwift/HEAD/Example/Pods/Target Support Files/Pods-PowerUpSwift_Tests/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-PowerUpSwift_Tests/Pods-PowerUpSwift_Tests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerUpX/PowerUpSwift/HEAD/Example/Pods/Target Support Files/Pods-PowerUpSwift_Tests/Pods-PowerUpSwift_Tests-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-PowerUpSwift_Tests/Pods-PowerUpSwift_Tests-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerUpX/PowerUpSwift/HEAD/Example/Pods/Target Support Files/Pods-PowerUpSwift_Tests/Pods-PowerUpSwift_Tests-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-PowerUpSwift_Tests/Pods-PowerUpSwift_Tests-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerUpX/PowerUpSwift/HEAD/Example/Pods/Target Support Files/Pods-PowerUpSwift_Tests/Pods-PowerUpSwift_Tests-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-PowerUpSwift_Tests/Pods-PowerUpSwift_Tests-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerUpX/PowerUpSwift/HEAD/Example/Pods/Target Support Files/Pods-PowerUpSwift_Tests/Pods-PowerUpSwift_Tests-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-PowerUpSwift_Tests/Pods-PowerUpSwift_Tests-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerUpX/PowerUpSwift/HEAD/Example/Pods/Target Support Files/Pods-PowerUpSwift_Tests/Pods-PowerUpSwift_Tests-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-PowerUpSwift_Tests/Pods-PowerUpSwift_Tests-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerUpX/PowerUpSwift/HEAD/Example/Pods/Target Support Files/Pods-PowerUpSwift_Tests/Pods-PowerUpSwift_Tests-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-PowerUpSwift_Tests/Pods-PowerUpSwift_Tests-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerUpX/PowerUpSwift/HEAD/Example/Pods/Target Support Files/Pods-PowerUpSwift_Tests/Pods-PowerUpSwift_Tests-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-PowerUpSwift_Tests/Pods-PowerUpSwift_Tests.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerUpX/PowerUpSwift/HEAD/Example/Pods/Target Support Files/Pods-PowerUpSwift_Tests/Pods-PowerUpSwift_Tests.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-PowerUpSwift_Tests/Pods-PowerUpSwift_Tests.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerUpX/PowerUpSwift/HEAD/Example/Pods/Target Support Files/Pods-PowerUpSwift_Tests/Pods-PowerUpSwift_Tests.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-PowerUpSwift_Tests/Pods-PowerUpSwift_Tests.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerUpX/PowerUpSwift/HEAD/Example/Pods/Target Support Files/Pods-PowerUpSwift_Tests/Pods-PowerUpSwift_Tests.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/PowerUpSwift/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerUpX/PowerUpSwift/HEAD/Example/Pods/Target Support Files/PowerUpSwift/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/PowerUpSwift/PowerUpSwift-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerUpX/PowerUpSwift/HEAD/Example/Pods/Target Support Files/PowerUpSwift/PowerUpSwift-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/PowerUpSwift/PowerUpSwift-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerUpX/PowerUpSwift/HEAD/Example/Pods/Target Support Files/PowerUpSwift/PowerUpSwift-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/PowerUpSwift/PowerUpSwift-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerUpX/PowerUpSwift/HEAD/Example/Pods/Target Support Files/PowerUpSwift/PowerUpSwift-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/PowerUpSwift/PowerUpSwift-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerUpX/PowerUpSwift/HEAD/Example/Pods/Target Support Files/PowerUpSwift/PowerUpSwift-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/PowerUpSwift/PowerUpSwift.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerUpX/PowerUpSwift/HEAD/Example/Pods/Target Support Files/PowerUpSwift/PowerUpSwift.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/PowerUpSwift/PowerUpSwift.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerUpX/PowerUpSwift/HEAD/Example/Pods/Target Support Files/PowerUpSwift/PowerUpSwift.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/PowerUpSwift/PowerUpSwift.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerUpX/PowerUpSwift/HEAD/Example/Pods/Target Support Files/PowerUpSwift/PowerUpSwift.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/PowerUpSwift/PowerUpSwift.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerUpX/PowerUpSwift/HEAD/Example/Pods/Target Support Files/PowerUpSwift/PowerUpSwift.xcconfig -------------------------------------------------------------------------------- /Example/PowerUpSwift.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerUpX/PowerUpSwift/HEAD/Example/PowerUpSwift.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/PowerUpSwift.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerUpX/PowerUpSwift/HEAD/Example/PowerUpSwift.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/PowerUpSwift.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerUpX/PowerUpSwift/HEAD/Example/PowerUpSwift.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/PowerUpSwift.xcodeproj/xcshareddata/xcschemes/PowerUpSwift-Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerUpX/PowerUpSwift/HEAD/Example/PowerUpSwift.xcodeproj/xcshareddata/xcschemes/PowerUpSwift-Example.xcscheme -------------------------------------------------------------------------------- /Example/PowerUpSwift.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerUpX/PowerUpSwift/HEAD/Example/PowerUpSwift.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/PowerUpSwift.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerUpX/PowerUpSwift/HEAD/Example/PowerUpSwift.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/PowerUpSwift.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerUpX/PowerUpSwift/HEAD/Example/PowerUpSwift.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /Example/PowerUpSwift/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerUpX/PowerUpSwift/HEAD/Example/PowerUpSwift/AppDelegate.swift -------------------------------------------------------------------------------- /Example/PowerUpSwift/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerUpX/PowerUpSwift/HEAD/Example/PowerUpSwift/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Example/PowerUpSwift/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerUpX/PowerUpSwift/HEAD/Example/PowerUpSwift/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/PowerUpSwift/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerUpX/PowerUpSwift/HEAD/Example/PowerUpSwift/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/PowerUpSwift/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerUpX/PowerUpSwift/HEAD/Example/PowerUpSwift/Info.plist -------------------------------------------------------------------------------- /Example/PowerUpSwift/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerUpX/PowerUpSwift/HEAD/Example/PowerUpSwift/ViewController.swift -------------------------------------------------------------------------------- /Example/Tests/BoolTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerUpX/PowerUpSwift/HEAD/Example/Tests/BoolTests.swift -------------------------------------------------------------------------------- /Example/Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerUpX/PowerUpSwift/HEAD/Example/Tests/Info.plist -------------------------------------------------------------------------------- /Example/Tests/StringTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerUpX/PowerUpSwift/HEAD/Example/Tests/StringTests.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerUpX/PowerUpSwift/HEAD/LICENSE -------------------------------------------------------------------------------- /MIGRATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerUpX/PowerUpSwift/HEAD/MIGRATION.md -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerUpX/PowerUpSwift/HEAD/Package.swift -------------------------------------------------------------------------------- /PowerUpSwift.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerUpX/PowerUpSwift/HEAD/PowerUpSwift.podspec -------------------------------------------------------------------------------- /PowerUpSwift/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PowerUpSwift/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PowerUpSwift/Classes/Classes/PUBarItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerUpX/PowerUpSwift/HEAD/PowerUpSwift/Classes/Classes/PUBarItem.swift -------------------------------------------------------------------------------- /PowerUpSwift/Classes/Classes/PUBaseTextField.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerUpX/PowerUpSwift/HEAD/PowerUpSwift/Classes/Classes/PUBaseTextField.swift -------------------------------------------------------------------------------- /PowerUpSwift/Classes/Classes/PUButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerUpX/PowerUpSwift/HEAD/PowerUpSwift/Classes/Classes/PUButton.swift -------------------------------------------------------------------------------- /PowerUpSwift/Classes/Classes/PUCollectionView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerUpX/PowerUpSwift/HEAD/PowerUpSwift/Classes/Classes/PUCollectionView.swift -------------------------------------------------------------------------------- /PowerUpSwift/Classes/Classes/PUImageView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerUpX/PowerUpSwift/HEAD/PowerUpSwift/Classes/Classes/PUImageView.swift -------------------------------------------------------------------------------- /PowerUpSwift/Classes/Classes/PULabel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerUpX/PowerUpSwift/HEAD/PowerUpSwift/Classes/Classes/PULabel.swift -------------------------------------------------------------------------------- /PowerUpSwift/Classes/Classes/PULoadingButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerUpX/PowerUpSwift/HEAD/PowerUpSwift/Classes/Classes/PULoadingButton.swift -------------------------------------------------------------------------------- /PowerUpSwift/Classes/Classes/PUNavigationItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerUpX/PowerUpSwift/HEAD/PowerUpSwift/Classes/Classes/PUNavigationItem.swift -------------------------------------------------------------------------------- /PowerUpSwift/Classes/Classes/PUSegmentedControl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerUpX/PowerUpSwift/HEAD/PowerUpSwift/Classes/Classes/PUSegmentedControl.swift -------------------------------------------------------------------------------- /PowerUpSwift/Classes/Classes/PUTableView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerUpX/PowerUpSwift/HEAD/PowerUpSwift/Classes/Classes/PUTableView.swift -------------------------------------------------------------------------------- /PowerUpSwift/Classes/Classes/PUTextField.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerUpX/PowerUpSwift/HEAD/PowerUpSwift/Classes/Classes/PUTextField.swift -------------------------------------------------------------------------------- /PowerUpSwift/Classes/Classes/PUTextView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerUpX/PowerUpSwift/HEAD/PowerUpSwift/Classes/Classes/PUTextView.swift -------------------------------------------------------------------------------- /PowerUpSwift/Classes/Classes/PUUnderlineTextField.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerUpX/PowerUpSwift/HEAD/PowerUpSwift/Classes/Classes/PUUnderlineTextField.swift -------------------------------------------------------------------------------- /PowerUpSwift/Classes/Classes/PUView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerUpX/PowerUpSwift/HEAD/PowerUpSwift/Classes/Classes/PUView.swift -------------------------------------------------------------------------------- /PowerUpSwift/Classes/Classes/PUVisualEffectView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerUpX/PowerUpSwift/HEAD/PowerUpSwift/Classes/Classes/PUVisualEffectView.swift -------------------------------------------------------------------------------- /PowerUpSwift/Classes/Classes/Protocols/PUInspectable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerUpX/PowerUpSwift/HEAD/PowerUpSwift/Classes/Classes/Protocols/PUInspectable.swift -------------------------------------------------------------------------------- /PowerUpSwift/Classes/Classes/Protocols/PULocalizable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerUpX/PowerUpSwift/HEAD/PowerUpSwift/Classes/Classes/Protocols/PULocalizable.swift -------------------------------------------------------------------------------- /PowerUpSwift/Classes/Extensions/CoreLocation/CLPlacemark.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerUpX/PowerUpSwift/HEAD/PowerUpSwift/Classes/Extensions/CoreLocation/CLPlacemark.swift -------------------------------------------------------------------------------- /PowerUpSwift/Classes/Extensions/Foundation/Bundle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerUpX/PowerUpSwift/HEAD/PowerUpSwift/Classes/Extensions/Foundation/Bundle.swift -------------------------------------------------------------------------------- /PowerUpSwift/Classes/Extensions/Foundation/Data.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerUpX/PowerUpSwift/HEAD/PowerUpSwift/Classes/Extensions/Foundation/Data.swift -------------------------------------------------------------------------------- /PowerUpSwift/Classes/Extensions/Foundation/Dictionary.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerUpX/PowerUpSwift/HEAD/PowerUpSwift/Classes/Extensions/Foundation/Dictionary.swift -------------------------------------------------------------------------------- /PowerUpSwift/Classes/Extensions/Foundation/Optional.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerUpX/PowerUpSwift/HEAD/PowerUpSwift/Classes/Extensions/Foundation/Optional.swift -------------------------------------------------------------------------------- /PowerUpSwift/Classes/Extensions/Foundation/String.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerUpX/PowerUpSwift/HEAD/PowerUpSwift/Classes/Extensions/Foundation/String.swift -------------------------------------------------------------------------------- /PowerUpSwift/Classes/Extensions/Foundation/URL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerUpX/PowerUpSwift/HEAD/PowerUpSwift/Classes/Extensions/Foundation/URL.swift -------------------------------------------------------------------------------- /PowerUpSwift/Classes/Extensions/Foundation/URLRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerUpX/PowerUpSwift/HEAD/PowerUpSwift/Classes/Extensions/Foundation/URLRequest.swift -------------------------------------------------------------------------------- /PowerUpSwift/Classes/Extensions/Foundation/URLResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerUpX/PowerUpSwift/HEAD/PowerUpSwift/Classes/Extensions/Foundation/URLResponse.swift -------------------------------------------------------------------------------- /PowerUpSwift/Classes/Extensions/UIKit/NSLayoutConstraint.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerUpX/PowerUpSwift/HEAD/PowerUpSwift/Classes/Extensions/UIKit/NSLayoutConstraint.swift -------------------------------------------------------------------------------- /PowerUpSwift/Classes/Extensions/UIKit/UIButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerUpX/PowerUpSwift/HEAD/PowerUpSwift/Classes/Extensions/UIKit/UIButton.swift -------------------------------------------------------------------------------- /PowerUpSwift/Classes/Extensions/UIKit/UICollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerUpX/PowerUpSwift/HEAD/PowerUpSwift/Classes/Extensions/UIKit/UICollectionViewCell.swift -------------------------------------------------------------------------------- /PowerUpSwift/Classes/Extensions/UIKit/UIColor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerUpX/PowerUpSwift/HEAD/PowerUpSwift/Classes/Extensions/UIKit/UIColor.swift -------------------------------------------------------------------------------- /PowerUpSwift/Classes/Extensions/UIKit/UINavigationController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerUpX/PowerUpSwift/HEAD/PowerUpSwift/Classes/Extensions/UIKit/UINavigationController.swift -------------------------------------------------------------------------------- /PowerUpSwift/Classes/Extensions/UIKit/UIRefreshControl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerUpX/PowerUpSwift/HEAD/PowerUpSwift/Classes/Extensions/UIKit/UIRefreshControl.swift -------------------------------------------------------------------------------- /PowerUpSwift/Classes/Extensions/UIKit/UITableView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerUpX/PowerUpSwift/HEAD/PowerUpSwift/Classes/Extensions/UIKit/UITableView.swift -------------------------------------------------------------------------------- /PowerUpSwift/Classes/Extensions/UIKit/UITableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerUpX/PowerUpSwift/HEAD/PowerUpSwift/Classes/Extensions/UIKit/UITableViewCell.swift -------------------------------------------------------------------------------- /PowerUpSwift/Classes/Extensions/UIKit/UITextView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerUpX/PowerUpSwift/HEAD/PowerUpSwift/Classes/Extensions/UIKit/UITextView.swift -------------------------------------------------------------------------------- /PowerUpSwift/Classes/Extensions/UIKit/UIViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerUpX/PowerUpSwift/HEAD/PowerUpSwift/Classes/Extensions/UIKit/UIViewController.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerUpX/PowerUpSwift/HEAD/README.md -------------------------------------------------------------------------------- /Screenshots/Demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerUpX/PowerUpSwift/HEAD/Screenshots/Demo.gif -------------------------------------------------------------------------------- /Screenshots/PowerUpSwift.afdesign: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerUpX/PowerUpSwift/HEAD/Screenshots/PowerUpSwift.afdesign -------------------------------------------------------------------------------- /Screenshots/PowerUpSwift.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerUpX/PowerUpSwift/HEAD/Screenshots/PowerUpSwift.png -------------------------------------------------------------------------------- /Screenshots/code-screenshot-orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerUpX/PowerUpSwift/HEAD/Screenshots/code-screenshot-orange.png -------------------------------------------------------------------------------- /Screenshots/code-screenshot-purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerUpX/PowerUpSwift/HEAD/Screenshots/code-screenshot-purple.png -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj --------------------------------------------------------------------------------