├── .gitignore ├── Assets ├── grview_sample1.png ├── grview_sample2.png ├── splash_Screen.png ├── usage_sample1.png └── usage_sample2.png ├── GRView.podspec ├── GRView.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcshareddata │ └── xcschemes │ └── GRView.xcscheme ├── GRView ├── GRView.h └── Info.plist ├── GradientView ├── GRButton.swift └── GRView.swift ├── LICENSE ├── README.md └── Screenshots └── screen_shot1.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahmed-Komsan/GRView/HEAD/.gitignore -------------------------------------------------------------------------------- /Assets/grview_sample1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahmed-Komsan/GRView/HEAD/Assets/grview_sample1.png -------------------------------------------------------------------------------- /Assets/grview_sample2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahmed-Komsan/GRView/HEAD/Assets/grview_sample2.png -------------------------------------------------------------------------------- /Assets/splash_Screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahmed-Komsan/GRView/HEAD/Assets/splash_Screen.png -------------------------------------------------------------------------------- /Assets/usage_sample1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahmed-Komsan/GRView/HEAD/Assets/usage_sample1.png -------------------------------------------------------------------------------- /Assets/usage_sample2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahmed-Komsan/GRView/HEAD/Assets/usage_sample2.png -------------------------------------------------------------------------------- /GRView.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahmed-Komsan/GRView/HEAD/GRView.podspec -------------------------------------------------------------------------------- /GRView.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahmed-Komsan/GRView/HEAD/GRView.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /GRView.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahmed-Komsan/GRView/HEAD/GRView.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /GRView.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahmed-Komsan/GRView/HEAD/GRView.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /GRView.xcodeproj/xcshareddata/xcschemes/GRView.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahmed-Komsan/GRView/HEAD/GRView.xcodeproj/xcshareddata/xcschemes/GRView.xcscheme -------------------------------------------------------------------------------- /GRView/GRView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahmed-Komsan/GRView/HEAD/GRView/GRView.h -------------------------------------------------------------------------------- /GRView/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahmed-Komsan/GRView/HEAD/GRView/Info.plist -------------------------------------------------------------------------------- /GradientView/GRButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahmed-Komsan/GRView/HEAD/GradientView/GRButton.swift -------------------------------------------------------------------------------- /GradientView/GRView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahmed-Komsan/GRView/HEAD/GradientView/GRView.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahmed-Komsan/GRView/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahmed-Komsan/GRView/HEAD/README.md -------------------------------------------------------------------------------- /Screenshots/screen_shot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ahmed-Komsan/GRView/HEAD/Screenshots/screen_shot1.png --------------------------------------------------------------------------------