├── .gitignore ├── .travis.yml ├── Example ├── MotionToastView.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── MotionToastView-Example.xcscheme ├── MotionToastView.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── MotionToastView │ ├── AppDelegate.swift │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Contents.json │ │ └── apple.imageset │ │ │ ├── Contents.json │ │ │ └── android.png │ ├── Info.plist │ └── ViewController.swift ├── Podfile ├── Podfile.lock ├── Pods │ ├── Local Podspecs │ │ └── MotionToastView.podspec.json │ ├── Manifest.lock │ ├── Pods.xcodeproj │ │ └── project.pbxproj │ └── Target Support Files │ │ ├── MotionToastView │ │ ├── MotionToastView-Info.plist │ │ ├── MotionToastView-dummy.m │ │ ├── MotionToastView-prefix.pch │ │ ├── MotionToastView-umbrella.h │ │ ├── MotionToastView.debug.xcconfig │ │ ├── MotionToastView.modulemap │ │ └── MotionToastView.release.xcconfig │ │ ├── Pods-MotionToastView_Example │ │ ├── Pods-MotionToastView_Example-Info.plist │ │ ├── Pods-MotionToastView_Example-acknowledgements.markdown │ │ ├── Pods-MotionToastView_Example-acknowledgements.plist │ │ ├── Pods-MotionToastView_Example-dummy.m │ │ ├── Pods-MotionToastView_Example-frameworks.sh │ │ ├── Pods-MotionToastView_Example-umbrella.h │ │ ├── Pods-MotionToastView_Example.debug.xcconfig │ │ ├── Pods-MotionToastView_Example.modulemap │ │ └── Pods-MotionToastView_Example.release.xcconfig │ │ └── Pods-MotionToastView_Tests │ │ ├── Pods-MotionToastView_Tests-Info.plist │ │ ├── Pods-MotionToastView_Tests-acknowledgements.markdown │ │ ├── Pods-MotionToastView_Tests-acknowledgements.plist │ │ ├── Pods-MotionToastView_Tests-dummy.m │ │ ├── Pods-MotionToastView_Tests-umbrella.h │ │ ├── Pods-MotionToastView_Tests.debug.xcconfig │ │ ├── Pods-MotionToastView_Tests.modulemap │ │ └── Pods-MotionToastView_Tests.release.xcconfig └── Tests │ ├── Info.plist │ └── Tests.swift ├── LICENSE ├── MotionToastView.podspec ├── MotionToastView ├── Assets.xcassets │ ├── Color set │ │ ├── Contents.json │ │ ├── alpha_blue_dark.colorset │ │ │ └── Contents.json │ │ ├── alpha_green_dark.colorset │ │ │ └── Contents.json │ │ ├── alpha_red_dark.colorset │ │ │ └── Contents.json │ │ ├── alpha_yellow_dark.colorset │ │ │ └── Contents.json │ │ ├── black_white.colorset │ │ │ └── Contents.json │ │ ├── blue_dark.colorset │ │ │ └── Contents.json │ │ ├── green_dark.colorset │ │ │ └── Contents.json │ │ ├── red_dark.colorset │ │ │ └── Contents.json │ │ ├── white_blue.colorset │ │ │ └── Contents.json │ │ ├── white_green.colorset │ │ │ └── Contents.json │ │ ├── white_red.colorset │ │ │ └── Contents.json │ │ ├── white_yellow.colorset │ │ │ └── Contents.json │ │ └── yellow_dark.colorset │ │ │ └── Contents.json │ ├── Contents.json │ └── Icons │ │ ├── Contents.json │ │ ├── error_icon.imageset │ │ ├── Contents.json │ │ ├── Group 10.png │ │ ├── Group 10@2x.png │ │ └── Group 10@3x.png │ │ ├── error_icon_white.imageset │ │ ├── Contents.json │ │ ├── Group 10.png │ │ ├── Group 10@2x.png │ │ └── Group 10@3x.png │ │ ├── info_icon.imageset │ │ ├── Contents.json │ │ ├── Group 10.png │ │ ├── Group 10@2x.png │ │ └── Group 10@3x.png │ │ ├── info_icon_white.imageset │ │ ├── Contents.json │ │ ├── Group 10.png │ │ ├── Group 10@2x.png │ │ └── Group 10@3x.png │ │ ├── success_icon.imageset │ │ ├── Contents.json │ │ ├── Group 10.png │ │ ├── Group 10@2x.png │ │ └── Group 10@3x.png │ │ ├── success_icon_white.imageset │ │ ├── Contents.json │ │ ├── Group 10.png │ │ ├── Group 10@2x.png │ │ └── Group 10@3x.png │ │ ├── warning_icon.imageset │ │ ├── Contents.json │ │ ├── Group 10.png │ │ ├── Group 10@2x.png │ │ └── Group 10@3x.png │ │ └── warning_icon_white.imageset │ │ ├── Contents.json │ │ ├── Group 10.png │ │ ├── Group 10@2x.png │ │ └── Group 10@3x.png ├── Assets │ └── .gitkeep └── Classes │ └── .gitkeep ├── README.md ├── Source ├── Extension.swift └── MotionToastStyles │ ├── MTPale.swift │ ├── MTPale.xib │ ├── MTVibrant.swift │ └── MTVibrant.xib └── _Pods.xcodeproj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersyd/MotionToastView/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersyd/MotionToastView/HEAD/.travis.yml -------------------------------------------------------------------------------- /Example/MotionToastView.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersyd/MotionToastView/HEAD/Example/MotionToastView.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/MotionToastView.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersyd/MotionToastView/HEAD/Example/MotionToastView.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/MotionToastView.xcodeproj/xcshareddata/xcschemes/MotionToastView-Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersyd/MotionToastView/HEAD/Example/MotionToastView.xcodeproj/xcshareddata/xcschemes/MotionToastView-Example.xcscheme -------------------------------------------------------------------------------- /Example/MotionToastView.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersyd/MotionToastView/HEAD/Example/MotionToastView.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/MotionToastView.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersyd/MotionToastView/HEAD/Example/MotionToastView.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/MotionToastView/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersyd/MotionToastView/HEAD/Example/MotionToastView/AppDelegate.swift -------------------------------------------------------------------------------- /Example/MotionToastView/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersyd/MotionToastView/HEAD/Example/MotionToastView/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Example/MotionToastView/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersyd/MotionToastView/HEAD/Example/MotionToastView/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/MotionToastView/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersyd/MotionToastView/HEAD/Example/MotionToastView/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/MotionToastView/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersyd/MotionToastView/HEAD/Example/MotionToastView/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /Example/MotionToastView/Images.xcassets/apple.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersyd/MotionToastView/HEAD/Example/MotionToastView/Images.xcassets/apple.imageset/Contents.json -------------------------------------------------------------------------------- /Example/MotionToastView/Images.xcassets/apple.imageset/android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersyd/MotionToastView/HEAD/Example/MotionToastView/Images.xcassets/apple.imageset/android.png -------------------------------------------------------------------------------- /Example/MotionToastView/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersyd/MotionToastView/HEAD/Example/MotionToastView/Info.plist -------------------------------------------------------------------------------- /Example/MotionToastView/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersyd/MotionToastView/HEAD/Example/MotionToastView/ViewController.swift -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersyd/MotionToastView/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersyd/MotionToastView/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/MotionToastView.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersyd/MotionToastView/HEAD/Example/Pods/Local Podspecs/MotionToastView.podspec.json -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersyd/MotionToastView/HEAD/Example/Pods/Manifest.lock -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersyd/MotionToastView/HEAD/Example/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/MotionToastView/MotionToastView-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersyd/MotionToastView/HEAD/Example/Pods/Target Support Files/MotionToastView/MotionToastView-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/MotionToastView/MotionToastView-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersyd/MotionToastView/HEAD/Example/Pods/Target Support Files/MotionToastView/MotionToastView-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/MotionToastView/MotionToastView-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersyd/MotionToastView/HEAD/Example/Pods/Target Support Files/MotionToastView/MotionToastView-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/MotionToastView/MotionToastView-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersyd/MotionToastView/HEAD/Example/Pods/Target Support Files/MotionToastView/MotionToastView-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/MotionToastView/MotionToastView.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersyd/MotionToastView/HEAD/Example/Pods/Target Support Files/MotionToastView/MotionToastView.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/MotionToastView/MotionToastView.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersyd/MotionToastView/HEAD/Example/Pods/Target Support Files/MotionToastView/MotionToastView.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/MotionToastView/MotionToastView.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersyd/MotionToastView/HEAD/Example/Pods/Target Support Files/MotionToastView/MotionToastView.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MotionToastView_Example/Pods-MotionToastView_Example-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersyd/MotionToastView/HEAD/Example/Pods/Target Support Files/Pods-MotionToastView_Example/Pods-MotionToastView_Example-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MotionToastView_Example/Pods-MotionToastView_Example-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersyd/MotionToastView/HEAD/Example/Pods/Target Support Files/Pods-MotionToastView_Example/Pods-MotionToastView_Example-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MotionToastView_Example/Pods-MotionToastView_Example-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersyd/MotionToastView/HEAD/Example/Pods/Target Support Files/Pods-MotionToastView_Example/Pods-MotionToastView_Example-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MotionToastView_Example/Pods-MotionToastView_Example-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersyd/MotionToastView/HEAD/Example/Pods/Target Support Files/Pods-MotionToastView_Example/Pods-MotionToastView_Example-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MotionToastView_Example/Pods-MotionToastView_Example-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersyd/MotionToastView/HEAD/Example/Pods/Target Support Files/Pods-MotionToastView_Example/Pods-MotionToastView_Example-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MotionToastView_Example/Pods-MotionToastView_Example-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersyd/MotionToastView/HEAD/Example/Pods/Target Support Files/Pods-MotionToastView_Example/Pods-MotionToastView_Example-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MotionToastView_Example/Pods-MotionToastView_Example.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersyd/MotionToastView/HEAD/Example/Pods/Target Support Files/Pods-MotionToastView_Example/Pods-MotionToastView_Example.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MotionToastView_Example/Pods-MotionToastView_Example.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersyd/MotionToastView/HEAD/Example/Pods/Target Support Files/Pods-MotionToastView_Example/Pods-MotionToastView_Example.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MotionToastView_Example/Pods-MotionToastView_Example.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersyd/MotionToastView/HEAD/Example/Pods/Target Support Files/Pods-MotionToastView_Example/Pods-MotionToastView_Example.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MotionToastView_Tests/Pods-MotionToastView_Tests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersyd/MotionToastView/HEAD/Example/Pods/Target Support Files/Pods-MotionToastView_Tests/Pods-MotionToastView_Tests-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MotionToastView_Tests/Pods-MotionToastView_Tests-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersyd/MotionToastView/HEAD/Example/Pods/Target Support Files/Pods-MotionToastView_Tests/Pods-MotionToastView_Tests-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MotionToastView_Tests/Pods-MotionToastView_Tests-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersyd/MotionToastView/HEAD/Example/Pods/Target Support Files/Pods-MotionToastView_Tests/Pods-MotionToastView_Tests-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MotionToastView_Tests/Pods-MotionToastView_Tests-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersyd/MotionToastView/HEAD/Example/Pods/Target Support Files/Pods-MotionToastView_Tests/Pods-MotionToastView_Tests-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MotionToastView_Tests/Pods-MotionToastView_Tests-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersyd/MotionToastView/HEAD/Example/Pods/Target Support Files/Pods-MotionToastView_Tests/Pods-MotionToastView_Tests-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MotionToastView_Tests/Pods-MotionToastView_Tests.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersyd/MotionToastView/HEAD/Example/Pods/Target Support Files/Pods-MotionToastView_Tests/Pods-MotionToastView_Tests.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MotionToastView_Tests/Pods-MotionToastView_Tests.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersyd/MotionToastView/HEAD/Example/Pods/Target Support Files/Pods-MotionToastView_Tests/Pods-MotionToastView_Tests.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MotionToastView_Tests/Pods-MotionToastView_Tests.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersyd/MotionToastView/HEAD/Example/Pods/Target Support Files/Pods-MotionToastView_Tests/Pods-MotionToastView_Tests.release.xcconfig -------------------------------------------------------------------------------- /Example/Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersyd/MotionToastView/HEAD/Example/Tests/Info.plist -------------------------------------------------------------------------------- /Example/Tests/Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersyd/MotionToastView/HEAD/Example/Tests/Tests.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersyd/MotionToastView/HEAD/LICENSE -------------------------------------------------------------------------------- /MotionToastView.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersyd/MotionToastView/HEAD/MotionToastView.podspec -------------------------------------------------------------------------------- /MotionToastView/Assets.xcassets/Color set/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersyd/MotionToastView/HEAD/MotionToastView/Assets.xcassets/Color set/Contents.json -------------------------------------------------------------------------------- /MotionToastView/Assets.xcassets/Color set/alpha_blue_dark.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersyd/MotionToastView/HEAD/MotionToastView/Assets.xcassets/Color set/alpha_blue_dark.colorset/Contents.json -------------------------------------------------------------------------------- /MotionToastView/Assets.xcassets/Color set/alpha_green_dark.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersyd/MotionToastView/HEAD/MotionToastView/Assets.xcassets/Color set/alpha_green_dark.colorset/Contents.json -------------------------------------------------------------------------------- /MotionToastView/Assets.xcassets/Color set/alpha_red_dark.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersyd/MotionToastView/HEAD/MotionToastView/Assets.xcassets/Color set/alpha_red_dark.colorset/Contents.json -------------------------------------------------------------------------------- /MotionToastView/Assets.xcassets/Color set/alpha_yellow_dark.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersyd/MotionToastView/HEAD/MotionToastView/Assets.xcassets/Color set/alpha_yellow_dark.colorset/Contents.json -------------------------------------------------------------------------------- /MotionToastView/Assets.xcassets/Color set/black_white.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersyd/MotionToastView/HEAD/MotionToastView/Assets.xcassets/Color set/black_white.colorset/Contents.json -------------------------------------------------------------------------------- /MotionToastView/Assets.xcassets/Color set/blue_dark.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersyd/MotionToastView/HEAD/MotionToastView/Assets.xcassets/Color set/blue_dark.colorset/Contents.json -------------------------------------------------------------------------------- /MotionToastView/Assets.xcassets/Color set/green_dark.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersyd/MotionToastView/HEAD/MotionToastView/Assets.xcassets/Color set/green_dark.colorset/Contents.json -------------------------------------------------------------------------------- /MotionToastView/Assets.xcassets/Color set/red_dark.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersyd/MotionToastView/HEAD/MotionToastView/Assets.xcassets/Color set/red_dark.colorset/Contents.json -------------------------------------------------------------------------------- /MotionToastView/Assets.xcassets/Color set/white_blue.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersyd/MotionToastView/HEAD/MotionToastView/Assets.xcassets/Color set/white_blue.colorset/Contents.json -------------------------------------------------------------------------------- /MotionToastView/Assets.xcassets/Color set/white_green.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersyd/MotionToastView/HEAD/MotionToastView/Assets.xcassets/Color set/white_green.colorset/Contents.json -------------------------------------------------------------------------------- /MotionToastView/Assets.xcassets/Color set/white_red.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersyd/MotionToastView/HEAD/MotionToastView/Assets.xcassets/Color set/white_red.colorset/Contents.json -------------------------------------------------------------------------------- /MotionToastView/Assets.xcassets/Color set/white_yellow.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersyd/MotionToastView/HEAD/MotionToastView/Assets.xcassets/Color set/white_yellow.colorset/Contents.json -------------------------------------------------------------------------------- /MotionToastView/Assets.xcassets/Color set/yellow_dark.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersyd/MotionToastView/HEAD/MotionToastView/Assets.xcassets/Color set/yellow_dark.colorset/Contents.json -------------------------------------------------------------------------------- /MotionToastView/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersyd/MotionToastView/HEAD/MotionToastView/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /MotionToastView/Assets.xcassets/Icons/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersyd/MotionToastView/HEAD/MotionToastView/Assets.xcassets/Icons/Contents.json -------------------------------------------------------------------------------- /MotionToastView/Assets.xcassets/Icons/error_icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersyd/MotionToastView/HEAD/MotionToastView/Assets.xcassets/Icons/error_icon.imageset/Contents.json -------------------------------------------------------------------------------- /MotionToastView/Assets.xcassets/Icons/error_icon.imageset/Group 10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersyd/MotionToastView/HEAD/MotionToastView/Assets.xcassets/Icons/error_icon.imageset/Group 10.png -------------------------------------------------------------------------------- /MotionToastView/Assets.xcassets/Icons/error_icon.imageset/Group 10@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersyd/MotionToastView/HEAD/MotionToastView/Assets.xcassets/Icons/error_icon.imageset/Group 10@2x.png -------------------------------------------------------------------------------- /MotionToastView/Assets.xcassets/Icons/error_icon.imageset/Group 10@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersyd/MotionToastView/HEAD/MotionToastView/Assets.xcassets/Icons/error_icon.imageset/Group 10@3x.png -------------------------------------------------------------------------------- /MotionToastView/Assets.xcassets/Icons/error_icon_white.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersyd/MotionToastView/HEAD/MotionToastView/Assets.xcassets/Icons/error_icon_white.imageset/Contents.json -------------------------------------------------------------------------------- /MotionToastView/Assets.xcassets/Icons/error_icon_white.imageset/Group 10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersyd/MotionToastView/HEAD/MotionToastView/Assets.xcassets/Icons/error_icon_white.imageset/Group 10.png -------------------------------------------------------------------------------- /MotionToastView/Assets.xcassets/Icons/error_icon_white.imageset/Group 10@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersyd/MotionToastView/HEAD/MotionToastView/Assets.xcassets/Icons/error_icon_white.imageset/Group 10@2x.png -------------------------------------------------------------------------------- /MotionToastView/Assets.xcassets/Icons/error_icon_white.imageset/Group 10@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersyd/MotionToastView/HEAD/MotionToastView/Assets.xcassets/Icons/error_icon_white.imageset/Group 10@3x.png -------------------------------------------------------------------------------- /MotionToastView/Assets.xcassets/Icons/info_icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersyd/MotionToastView/HEAD/MotionToastView/Assets.xcassets/Icons/info_icon.imageset/Contents.json -------------------------------------------------------------------------------- /MotionToastView/Assets.xcassets/Icons/info_icon.imageset/Group 10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersyd/MotionToastView/HEAD/MotionToastView/Assets.xcassets/Icons/info_icon.imageset/Group 10.png -------------------------------------------------------------------------------- /MotionToastView/Assets.xcassets/Icons/info_icon.imageset/Group 10@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersyd/MotionToastView/HEAD/MotionToastView/Assets.xcassets/Icons/info_icon.imageset/Group 10@2x.png -------------------------------------------------------------------------------- /MotionToastView/Assets.xcassets/Icons/info_icon.imageset/Group 10@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersyd/MotionToastView/HEAD/MotionToastView/Assets.xcassets/Icons/info_icon.imageset/Group 10@3x.png -------------------------------------------------------------------------------- /MotionToastView/Assets.xcassets/Icons/info_icon_white.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersyd/MotionToastView/HEAD/MotionToastView/Assets.xcassets/Icons/info_icon_white.imageset/Contents.json -------------------------------------------------------------------------------- /MotionToastView/Assets.xcassets/Icons/info_icon_white.imageset/Group 10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersyd/MotionToastView/HEAD/MotionToastView/Assets.xcassets/Icons/info_icon_white.imageset/Group 10.png -------------------------------------------------------------------------------- /MotionToastView/Assets.xcassets/Icons/info_icon_white.imageset/Group 10@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersyd/MotionToastView/HEAD/MotionToastView/Assets.xcassets/Icons/info_icon_white.imageset/Group 10@2x.png -------------------------------------------------------------------------------- /MotionToastView/Assets.xcassets/Icons/info_icon_white.imageset/Group 10@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersyd/MotionToastView/HEAD/MotionToastView/Assets.xcassets/Icons/info_icon_white.imageset/Group 10@3x.png -------------------------------------------------------------------------------- /MotionToastView/Assets.xcassets/Icons/success_icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersyd/MotionToastView/HEAD/MotionToastView/Assets.xcassets/Icons/success_icon.imageset/Contents.json -------------------------------------------------------------------------------- /MotionToastView/Assets.xcassets/Icons/success_icon.imageset/Group 10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersyd/MotionToastView/HEAD/MotionToastView/Assets.xcassets/Icons/success_icon.imageset/Group 10.png -------------------------------------------------------------------------------- /MotionToastView/Assets.xcassets/Icons/success_icon.imageset/Group 10@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersyd/MotionToastView/HEAD/MotionToastView/Assets.xcassets/Icons/success_icon.imageset/Group 10@2x.png -------------------------------------------------------------------------------- /MotionToastView/Assets.xcassets/Icons/success_icon.imageset/Group 10@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersyd/MotionToastView/HEAD/MotionToastView/Assets.xcassets/Icons/success_icon.imageset/Group 10@3x.png -------------------------------------------------------------------------------- /MotionToastView/Assets.xcassets/Icons/success_icon_white.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersyd/MotionToastView/HEAD/MotionToastView/Assets.xcassets/Icons/success_icon_white.imageset/Contents.json -------------------------------------------------------------------------------- /MotionToastView/Assets.xcassets/Icons/success_icon_white.imageset/Group 10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersyd/MotionToastView/HEAD/MotionToastView/Assets.xcassets/Icons/success_icon_white.imageset/Group 10.png -------------------------------------------------------------------------------- /MotionToastView/Assets.xcassets/Icons/success_icon_white.imageset/Group 10@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersyd/MotionToastView/HEAD/MotionToastView/Assets.xcassets/Icons/success_icon_white.imageset/Group 10@2x.png -------------------------------------------------------------------------------- /MotionToastView/Assets.xcassets/Icons/success_icon_white.imageset/Group 10@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersyd/MotionToastView/HEAD/MotionToastView/Assets.xcassets/Icons/success_icon_white.imageset/Group 10@3x.png -------------------------------------------------------------------------------- /MotionToastView/Assets.xcassets/Icons/warning_icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersyd/MotionToastView/HEAD/MotionToastView/Assets.xcassets/Icons/warning_icon.imageset/Contents.json -------------------------------------------------------------------------------- /MotionToastView/Assets.xcassets/Icons/warning_icon.imageset/Group 10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersyd/MotionToastView/HEAD/MotionToastView/Assets.xcassets/Icons/warning_icon.imageset/Group 10.png -------------------------------------------------------------------------------- /MotionToastView/Assets.xcassets/Icons/warning_icon.imageset/Group 10@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersyd/MotionToastView/HEAD/MotionToastView/Assets.xcassets/Icons/warning_icon.imageset/Group 10@2x.png -------------------------------------------------------------------------------- /MotionToastView/Assets.xcassets/Icons/warning_icon.imageset/Group 10@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersyd/MotionToastView/HEAD/MotionToastView/Assets.xcassets/Icons/warning_icon.imageset/Group 10@3x.png -------------------------------------------------------------------------------- /MotionToastView/Assets.xcassets/Icons/warning_icon_white.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersyd/MotionToastView/HEAD/MotionToastView/Assets.xcassets/Icons/warning_icon_white.imageset/Contents.json -------------------------------------------------------------------------------- /MotionToastView/Assets.xcassets/Icons/warning_icon_white.imageset/Group 10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersyd/MotionToastView/HEAD/MotionToastView/Assets.xcassets/Icons/warning_icon_white.imageset/Group 10.png -------------------------------------------------------------------------------- /MotionToastView/Assets.xcassets/Icons/warning_icon_white.imageset/Group 10@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersyd/MotionToastView/HEAD/MotionToastView/Assets.xcassets/Icons/warning_icon_white.imageset/Group 10@2x.png -------------------------------------------------------------------------------- /MotionToastView/Assets.xcassets/Icons/warning_icon_white.imageset/Group 10@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersyd/MotionToastView/HEAD/MotionToastView/Assets.xcassets/Icons/warning_icon_white.imageset/Group 10@3x.png -------------------------------------------------------------------------------- /MotionToastView/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MotionToastView/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersyd/MotionToastView/HEAD/README.md -------------------------------------------------------------------------------- /Source/Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersyd/MotionToastView/HEAD/Source/Extension.swift -------------------------------------------------------------------------------- /Source/MotionToastStyles/MTPale.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersyd/MotionToastView/HEAD/Source/MotionToastStyles/MTPale.swift -------------------------------------------------------------------------------- /Source/MotionToastStyles/MTPale.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersyd/MotionToastView/HEAD/Source/MotionToastStyles/MTPale.xib -------------------------------------------------------------------------------- /Source/MotionToastStyles/MTVibrant.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersyd/MotionToastView/HEAD/Source/MotionToastStyles/MTVibrant.swift -------------------------------------------------------------------------------- /Source/MotionToastStyles/MTVibrant.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersyd/MotionToastView/HEAD/Source/MotionToastStyles/MTVibrant.xib -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj --------------------------------------------------------------------------------