├── .gitignore ├── LICENSE ├── Podfile ├── Podfile.lock ├── Pods ├── ALKit │ ├── ALKit │ │ └── ALKit │ │ │ └── ALKit.swift │ └── README.md ├── Manifest.lock ├── Pods.xcodeproj │ ├── project.pbxproj │ └── xcuserdata │ │ └── Cem.xcuserdatad │ │ └── xcschemes │ │ ├── ALKit.xcscheme │ │ ├── Pods-TVOSButton.xcscheme │ │ └── xcschememanagement.plist └── Target Support Files │ ├── ALKit │ ├── ALKit-dummy.m │ ├── ALKit-prefix.pch │ ├── ALKit-umbrella.h │ ├── ALKit.modulemap │ ├── ALKit.xcconfig │ └── Info.plist │ └── Pods-TVOSButton │ ├── Info.plist │ ├── Pods-TVOSButton-acknowledgements.markdown │ ├── Pods-TVOSButton-acknowledgements.plist │ ├── Pods-TVOSButton-dummy.m │ ├── Pods-TVOSButton-frameworks.sh │ ├── Pods-TVOSButton-resources.sh │ ├── Pods-TVOSButton-umbrella.h │ ├── Pods-TVOSButton.debug.xcconfig │ ├── Pods-TVOSButton.modulemap │ └── Pods-TVOSButton.release.xcconfig ├── README.md ├── TVOSButton.podspec ├── TVOSButton.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcuserdata │ └── Cem.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ ├── TVOSButton.xcscheme │ └── xcschememanagement.plist ├── TVOSButton.xcworkspace ├── contents.xcworkspacedata └── xcuserdata │ └── Cem.xcuserdatad │ └── xcdebugger │ └── Breakpoints_v2.xcbkptlist ├── TVOSButton ├── Info.plist ├── TVOSButton.h ├── TVOSButton.swift ├── TVOSButtonImage.swift ├── TVOSButtonLabel.swift ├── TVOSButtonShadow.swift └── TVOSToggleButton.swift ├── TVOSButtonExample ├── TVOSButtonExample.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcuserdata │ │ └── Cem.xcuserdatad │ │ └── xcschemes │ │ ├── TVOSButtonExample.xcscheme │ │ └── xcschememanagement.plist ├── TVOSButtonExample │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── App Icon & Top Shelf Image.brandassets │ │ │ ├── App Icon - Large.imagestack │ │ │ │ ├── Back.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ ├── Contents.json │ │ │ │ ├── Front.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ └── Middle.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ ├── App Icon - Small.imagestack │ │ │ │ ├── Back.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ ├── Contents.json │ │ │ │ ├── Front.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ └── Middle.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ └── Top Shelf Image.imageset │ │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── LaunchImage.launchimage │ │ │ └── Contents.json │ │ ├── shareBlack.imageset │ │ │ ├── Contents.json │ │ │ └── upload-100.png │ │ └── shareWhite.imageset │ │ │ ├── Contents.json │ │ │ └── shareWhite.png │ ├── Base.lproj │ │ └── Main.storyboard │ ├── Info.plist │ └── ViewController.swift ├── TVOSButtonExampleTests │ ├── Info.plist │ └── TVOSButtonExampleTests.swift └── TVOSButtonExampleUITests │ ├── Info.plist │ └── TVOSButtonExampleUITests.swift ├── TVOSButtonTests ├── Info.plist └── TVOSButtonTests.swift └── demo.gif /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahin/TVOSButton/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahin/TVOSButton/HEAD/LICENSE -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahin/TVOSButton/HEAD/Podfile -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahin/TVOSButton/HEAD/Podfile.lock -------------------------------------------------------------------------------- /Pods/ALKit/ALKit/ALKit/ALKit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahin/TVOSButton/HEAD/Pods/ALKit/ALKit/ALKit/ALKit.swift -------------------------------------------------------------------------------- /Pods/ALKit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahin/TVOSButton/HEAD/Pods/ALKit/README.md -------------------------------------------------------------------------------- /Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahin/TVOSButton/HEAD/Pods/Manifest.lock -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahin/TVOSButton/HEAD/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/Cem.xcuserdatad/xcschemes/ALKit.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahin/TVOSButton/HEAD/Pods/Pods.xcodeproj/xcuserdata/Cem.xcuserdatad/xcschemes/ALKit.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/Cem.xcuserdatad/xcschemes/Pods-TVOSButton.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahin/TVOSButton/HEAD/Pods/Pods.xcodeproj/xcuserdata/Cem.xcuserdatad/xcschemes/Pods-TVOSButton.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/Cem.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahin/TVOSButton/HEAD/Pods/Pods.xcodeproj/xcuserdata/Cem.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/ALKit/ALKit-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahin/TVOSButton/HEAD/Pods/Target Support Files/ALKit/ALKit-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/ALKit/ALKit-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahin/TVOSButton/HEAD/Pods/Target Support Files/ALKit/ALKit-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/ALKit/ALKit-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahin/TVOSButton/HEAD/Pods/Target Support Files/ALKit/ALKit-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/ALKit/ALKit.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahin/TVOSButton/HEAD/Pods/Target Support Files/ALKit/ALKit.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/ALKit/ALKit.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahin/TVOSButton/HEAD/Pods/Target Support Files/ALKit/ALKit.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/ALKit/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahin/TVOSButton/HEAD/Pods/Target Support Files/ALKit/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-TVOSButton/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahin/TVOSButton/HEAD/Pods/Target Support Files/Pods-TVOSButton/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-TVOSButton/Pods-TVOSButton-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahin/TVOSButton/HEAD/Pods/Target Support Files/Pods-TVOSButton/Pods-TVOSButton-acknowledgements.markdown -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-TVOSButton/Pods-TVOSButton-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahin/TVOSButton/HEAD/Pods/Target Support Files/Pods-TVOSButton/Pods-TVOSButton-acknowledgements.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-TVOSButton/Pods-TVOSButton-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahin/TVOSButton/HEAD/Pods/Target Support Files/Pods-TVOSButton/Pods-TVOSButton-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-TVOSButton/Pods-TVOSButton-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahin/TVOSButton/HEAD/Pods/Target Support Files/Pods-TVOSButton/Pods-TVOSButton-frameworks.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-TVOSButton/Pods-TVOSButton-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahin/TVOSButton/HEAD/Pods/Target Support Files/Pods-TVOSButton/Pods-TVOSButton-resources.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-TVOSButton/Pods-TVOSButton-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahin/TVOSButton/HEAD/Pods/Target Support Files/Pods-TVOSButton/Pods-TVOSButton-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-TVOSButton/Pods-TVOSButton.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahin/TVOSButton/HEAD/Pods/Target Support Files/Pods-TVOSButton/Pods-TVOSButton.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-TVOSButton/Pods-TVOSButton.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahin/TVOSButton/HEAD/Pods/Target Support Files/Pods-TVOSButton/Pods-TVOSButton.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-TVOSButton/Pods-TVOSButton.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahin/TVOSButton/HEAD/Pods/Target Support Files/Pods-TVOSButton/Pods-TVOSButton.release.xcconfig -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahin/TVOSButton/HEAD/README.md -------------------------------------------------------------------------------- /TVOSButton.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahin/TVOSButton/HEAD/TVOSButton.podspec -------------------------------------------------------------------------------- /TVOSButton.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahin/TVOSButton/HEAD/TVOSButton.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /TVOSButton.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahin/TVOSButton/HEAD/TVOSButton.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /TVOSButton.xcodeproj/xcuserdata/Cem.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahin/TVOSButton/HEAD/TVOSButton.xcodeproj/xcuserdata/Cem.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /TVOSButton.xcodeproj/xcuserdata/Cem.xcuserdatad/xcschemes/TVOSButton.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahin/TVOSButton/HEAD/TVOSButton.xcodeproj/xcuserdata/Cem.xcuserdatad/xcschemes/TVOSButton.xcscheme -------------------------------------------------------------------------------- /TVOSButton.xcodeproj/xcuserdata/Cem.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahin/TVOSButton/HEAD/TVOSButton.xcodeproj/xcuserdata/Cem.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /TVOSButton.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahin/TVOSButton/HEAD/TVOSButton.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /TVOSButton.xcworkspace/xcuserdata/Cem.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahin/TVOSButton/HEAD/TVOSButton.xcworkspace/xcuserdata/Cem.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /TVOSButton/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahin/TVOSButton/HEAD/TVOSButton/Info.plist -------------------------------------------------------------------------------- /TVOSButton/TVOSButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahin/TVOSButton/HEAD/TVOSButton/TVOSButton.h -------------------------------------------------------------------------------- /TVOSButton/TVOSButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahin/TVOSButton/HEAD/TVOSButton/TVOSButton.swift -------------------------------------------------------------------------------- /TVOSButton/TVOSButtonImage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahin/TVOSButton/HEAD/TVOSButton/TVOSButtonImage.swift -------------------------------------------------------------------------------- /TVOSButton/TVOSButtonLabel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahin/TVOSButton/HEAD/TVOSButton/TVOSButtonLabel.swift -------------------------------------------------------------------------------- /TVOSButton/TVOSButtonShadow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahin/TVOSButton/HEAD/TVOSButton/TVOSButtonShadow.swift -------------------------------------------------------------------------------- /TVOSButton/TVOSToggleButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahin/TVOSButton/HEAD/TVOSButton/TVOSToggleButton.swift -------------------------------------------------------------------------------- /TVOSButtonExample/TVOSButtonExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahin/TVOSButton/HEAD/TVOSButtonExample/TVOSButtonExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /TVOSButtonExample/TVOSButtonExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahin/TVOSButton/HEAD/TVOSButtonExample/TVOSButtonExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /TVOSButtonExample/TVOSButtonExample.xcodeproj/xcuserdata/Cem.xcuserdatad/xcschemes/TVOSButtonExample.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahin/TVOSButton/HEAD/TVOSButtonExample/TVOSButtonExample.xcodeproj/xcuserdata/Cem.xcuserdatad/xcschemes/TVOSButtonExample.xcscheme -------------------------------------------------------------------------------- /TVOSButtonExample/TVOSButtonExample.xcodeproj/xcuserdata/Cem.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahin/TVOSButton/HEAD/TVOSButtonExample/TVOSButtonExample.xcodeproj/xcuserdata/Cem.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /TVOSButtonExample/TVOSButtonExample/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahin/TVOSButton/HEAD/TVOSButtonExample/TVOSButtonExample/AppDelegate.swift -------------------------------------------------------------------------------- /TVOSButtonExample/TVOSButtonExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Back.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahin/TVOSButton/HEAD/TVOSButtonExample/TVOSButtonExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Back.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /TVOSButtonExample/TVOSButtonExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Back.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahin/TVOSButton/HEAD/TVOSButtonExample/TVOSButtonExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Back.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /TVOSButtonExample/TVOSButtonExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahin/TVOSButton/HEAD/TVOSButtonExample/TVOSButtonExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Contents.json -------------------------------------------------------------------------------- /TVOSButtonExample/TVOSButtonExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Front.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahin/TVOSButton/HEAD/TVOSButtonExample/TVOSButtonExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Front.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /TVOSButtonExample/TVOSButtonExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Front.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahin/TVOSButton/HEAD/TVOSButtonExample/TVOSButtonExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Front.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /TVOSButtonExample/TVOSButtonExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahin/TVOSButton/HEAD/TVOSButtonExample/TVOSButtonExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /TVOSButtonExample/TVOSButtonExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Middle.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahin/TVOSButton/HEAD/TVOSButtonExample/TVOSButtonExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Middle.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /TVOSButtonExample/TVOSButtonExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Back.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahin/TVOSButton/HEAD/TVOSButtonExample/TVOSButtonExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Back.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /TVOSButtonExample/TVOSButtonExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Back.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahin/TVOSButton/HEAD/TVOSButtonExample/TVOSButtonExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Back.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /TVOSButtonExample/TVOSButtonExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahin/TVOSButton/HEAD/TVOSButtonExample/TVOSButtonExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Contents.json -------------------------------------------------------------------------------- /TVOSButtonExample/TVOSButtonExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Front.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahin/TVOSButton/HEAD/TVOSButtonExample/TVOSButtonExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Front.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /TVOSButtonExample/TVOSButtonExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Front.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahin/TVOSButton/HEAD/TVOSButtonExample/TVOSButtonExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Front.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /TVOSButtonExample/TVOSButtonExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahin/TVOSButton/HEAD/TVOSButtonExample/TVOSButtonExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /TVOSButtonExample/TVOSButtonExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Middle.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahin/TVOSButton/HEAD/TVOSButtonExample/TVOSButtonExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Middle.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /TVOSButtonExample/TVOSButtonExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahin/TVOSButton/HEAD/TVOSButtonExample/TVOSButtonExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Contents.json -------------------------------------------------------------------------------- /TVOSButtonExample/TVOSButtonExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Top Shelf Image.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahin/TVOSButton/HEAD/TVOSButtonExample/TVOSButtonExample/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Top Shelf Image.imageset/Contents.json -------------------------------------------------------------------------------- /TVOSButtonExample/TVOSButtonExample/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahin/TVOSButton/HEAD/TVOSButtonExample/TVOSButtonExample/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /TVOSButtonExample/TVOSButtonExample/Assets.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahin/TVOSButton/HEAD/TVOSButtonExample/TVOSButtonExample/Assets.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /TVOSButtonExample/TVOSButtonExample/Assets.xcassets/shareBlack.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahin/TVOSButton/HEAD/TVOSButtonExample/TVOSButtonExample/Assets.xcassets/shareBlack.imageset/Contents.json -------------------------------------------------------------------------------- /TVOSButtonExample/TVOSButtonExample/Assets.xcassets/shareBlack.imageset/upload-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahin/TVOSButton/HEAD/TVOSButtonExample/TVOSButtonExample/Assets.xcassets/shareBlack.imageset/upload-100.png -------------------------------------------------------------------------------- /TVOSButtonExample/TVOSButtonExample/Assets.xcassets/shareWhite.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahin/TVOSButton/HEAD/TVOSButtonExample/TVOSButtonExample/Assets.xcassets/shareWhite.imageset/Contents.json -------------------------------------------------------------------------------- /TVOSButtonExample/TVOSButtonExample/Assets.xcassets/shareWhite.imageset/shareWhite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahin/TVOSButton/HEAD/TVOSButtonExample/TVOSButtonExample/Assets.xcassets/shareWhite.imageset/shareWhite.png -------------------------------------------------------------------------------- /TVOSButtonExample/TVOSButtonExample/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahin/TVOSButton/HEAD/TVOSButtonExample/TVOSButtonExample/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /TVOSButtonExample/TVOSButtonExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahin/TVOSButton/HEAD/TVOSButtonExample/TVOSButtonExample/Info.plist -------------------------------------------------------------------------------- /TVOSButtonExample/TVOSButtonExample/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahin/TVOSButton/HEAD/TVOSButtonExample/TVOSButtonExample/ViewController.swift -------------------------------------------------------------------------------- /TVOSButtonExample/TVOSButtonExampleTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahin/TVOSButton/HEAD/TVOSButtonExample/TVOSButtonExampleTests/Info.plist -------------------------------------------------------------------------------- /TVOSButtonExample/TVOSButtonExampleTests/TVOSButtonExampleTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahin/TVOSButton/HEAD/TVOSButtonExample/TVOSButtonExampleTests/TVOSButtonExampleTests.swift -------------------------------------------------------------------------------- /TVOSButtonExample/TVOSButtonExampleUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahin/TVOSButton/HEAD/TVOSButtonExample/TVOSButtonExampleUITests/Info.plist -------------------------------------------------------------------------------- /TVOSButtonExample/TVOSButtonExampleUITests/TVOSButtonExampleUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahin/TVOSButton/HEAD/TVOSButtonExample/TVOSButtonExampleUITests/TVOSButtonExampleUITests.swift -------------------------------------------------------------------------------- /TVOSButtonTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahin/TVOSButton/HEAD/TVOSButtonTests/Info.plist -------------------------------------------------------------------------------- /TVOSButtonTests/TVOSButtonTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahin/TVOSButton/HEAD/TVOSButtonTests/TVOSButtonTests.swift -------------------------------------------------------------------------------- /demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sahin/TVOSButton/HEAD/demo.gif --------------------------------------------------------------------------------