├── .github ├── FUNDING.yml └── workflows │ └── ci.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── Package.swift ├── README.md ├── TORoundedButton.podspec ├── TORoundedButton ├── TORoundedButton.h └── TORoundedButton.m ├── TORoundedButtonExample.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcshareddata │ └── xcschemes │ ├── TORoundedButtonExample.xcscheme │ ├── TORoundedButtonFramework.xcscheme │ └── TORoundedButtonTests.xcscheme ├── TORoundedButtonExample ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Info.plist ├── TORoundedButtonExample.entitlements ├── ViewController.h ├── ViewController.m ├── main.m └── wallpaper.jpg ├── TORoundedButtonExampleTests ├── Info.plist └── TORoundedButtonExampleTests.m ├── TORoundedButtonFramework └── Info.plist ├── screenshot.png └── spm ├── TORoundedButton.m └── include └── TORoundedButton.h /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: timoliver 2 | custom: https://tim.dev/paypal 3 | -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimOliver/TORoundedButton/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimOliver/TORoundedButton/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimOliver/TORoundedButton/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimOliver/TORoundedButton/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimOliver/TORoundedButton/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimOliver/TORoundedButton/HEAD/README.md -------------------------------------------------------------------------------- /TORoundedButton.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimOliver/TORoundedButton/HEAD/TORoundedButton.podspec -------------------------------------------------------------------------------- /TORoundedButton/TORoundedButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimOliver/TORoundedButton/HEAD/TORoundedButton/TORoundedButton.h -------------------------------------------------------------------------------- /TORoundedButton/TORoundedButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimOliver/TORoundedButton/HEAD/TORoundedButton/TORoundedButton.m -------------------------------------------------------------------------------- /TORoundedButtonExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimOliver/TORoundedButton/HEAD/TORoundedButtonExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /TORoundedButtonExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimOliver/TORoundedButton/HEAD/TORoundedButtonExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /TORoundedButtonExample.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimOliver/TORoundedButton/HEAD/TORoundedButtonExample.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /TORoundedButtonExample.xcodeproj/xcshareddata/xcschemes/TORoundedButtonExample.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimOliver/TORoundedButton/HEAD/TORoundedButtonExample.xcodeproj/xcshareddata/xcschemes/TORoundedButtonExample.xcscheme -------------------------------------------------------------------------------- /TORoundedButtonExample.xcodeproj/xcshareddata/xcschemes/TORoundedButtonFramework.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimOliver/TORoundedButton/HEAD/TORoundedButtonExample.xcodeproj/xcshareddata/xcschemes/TORoundedButtonFramework.xcscheme -------------------------------------------------------------------------------- /TORoundedButtonExample.xcodeproj/xcshareddata/xcschemes/TORoundedButtonTests.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimOliver/TORoundedButton/HEAD/TORoundedButtonExample.xcodeproj/xcshareddata/xcschemes/TORoundedButtonTests.xcscheme -------------------------------------------------------------------------------- /TORoundedButtonExample/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimOliver/TORoundedButton/HEAD/TORoundedButtonExample/AppDelegate.h -------------------------------------------------------------------------------- /TORoundedButtonExample/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimOliver/TORoundedButton/HEAD/TORoundedButtonExample/AppDelegate.m -------------------------------------------------------------------------------- /TORoundedButtonExample/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimOliver/TORoundedButton/HEAD/TORoundedButtonExample/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /TORoundedButtonExample/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimOliver/TORoundedButton/HEAD/TORoundedButtonExample/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /TORoundedButtonExample/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimOliver/TORoundedButton/HEAD/TORoundedButtonExample/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /TORoundedButtonExample/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimOliver/TORoundedButton/HEAD/TORoundedButtonExample/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /TORoundedButtonExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimOliver/TORoundedButton/HEAD/TORoundedButtonExample/Info.plist -------------------------------------------------------------------------------- /TORoundedButtonExample/TORoundedButtonExample.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimOliver/TORoundedButton/HEAD/TORoundedButtonExample/TORoundedButtonExample.entitlements -------------------------------------------------------------------------------- /TORoundedButtonExample/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimOliver/TORoundedButton/HEAD/TORoundedButtonExample/ViewController.h -------------------------------------------------------------------------------- /TORoundedButtonExample/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimOliver/TORoundedButton/HEAD/TORoundedButtonExample/ViewController.m -------------------------------------------------------------------------------- /TORoundedButtonExample/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimOliver/TORoundedButton/HEAD/TORoundedButtonExample/main.m -------------------------------------------------------------------------------- /TORoundedButtonExample/wallpaper.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimOliver/TORoundedButton/HEAD/TORoundedButtonExample/wallpaper.jpg -------------------------------------------------------------------------------- /TORoundedButtonExampleTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimOliver/TORoundedButton/HEAD/TORoundedButtonExampleTests/Info.plist -------------------------------------------------------------------------------- /TORoundedButtonExampleTests/TORoundedButtonExampleTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimOliver/TORoundedButton/HEAD/TORoundedButtonExampleTests/TORoundedButtonExampleTests.m -------------------------------------------------------------------------------- /TORoundedButtonFramework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimOliver/TORoundedButton/HEAD/TORoundedButtonFramework/Info.plist -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TimOliver/TORoundedButton/HEAD/screenshot.png -------------------------------------------------------------------------------- /spm/TORoundedButton.m: -------------------------------------------------------------------------------- 1 | ../TORoundedButton/TORoundedButton.m -------------------------------------------------------------------------------- /spm/include/TORoundedButton.h: -------------------------------------------------------------------------------- 1 | ../../TORoundedButton/TORoundedButton.h --------------------------------------------------------------------------------