├── .gitignore ├── .swift-version ├── .travis.yml ├── Example ├── GLNotificationBar.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── GLNotificationBar-Example.xcscheme ├── GLNotificationBar.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── WorkspaceSettings.xcsettings ├── GLNotificationBar │ ├── AppDelegate.swift │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-App-29x29@1x.png │ │ │ ├── Icon-App-29x29@2x-1.png │ │ │ ├── Icon-App-29x29@2x-2.png │ │ │ ├── Icon-App-29x29@2x.png │ │ │ ├── Icon-App-29x29@3x-1.png │ │ │ ├── Icon-App-29x29@3x.png │ │ │ ├── Icon-App-40x40@1x.png │ │ │ ├── Icon-App-40x40@2x-1.png │ │ │ ├── Icon-App-40x40@2x.png │ │ │ ├── Icon-App-40x40@3x.png │ │ │ ├── Icon-App-60x60@2x.png │ │ │ ├── Icon-App-60x60@3x.png │ │ │ ├── Icon-App-76x76@1x.png │ │ │ ├── Icon-App-76x76@2x.png │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ ├── BG3.imageset │ │ │ ├── BG3.jpg │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Info.plist │ ├── Main.storyboard │ └── ViewController.swift ├── Podfile ├── Podfile.lock ├── Pods │ ├── Local Podspecs │ │ └── GLNotificationBar.podspec.json │ ├── Manifest.lock │ ├── Pods.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── Target Support Files │ │ ├── GLNotificationBar │ │ ├── GLNotificationBar-dummy.m │ │ ├── GLNotificationBar-prefix.pch │ │ ├── GLNotificationBar-umbrella.h │ │ ├── GLNotificationBar.modulemap │ │ ├── GLNotificationBar.xcconfig │ │ ├── Info.plist │ │ └── ResourceBundle-GLNotificationBar-Info.plist │ │ ├── Pods-GLNotificationBar_Example │ │ ├── Info.plist │ │ ├── Pods-GLNotificationBar_Example-acknowledgements.markdown │ │ ├── Pods-GLNotificationBar_Example-acknowledgements.plist │ │ ├── Pods-GLNotificationBar_Example-dummy.m │ │ ├── Pods-GLNotificationBar_Example-frameworks.sh │ │ ├── Pods-GLNotificationBar_Example-resources.sh │ │ ├── Pods-GLNotificationBar_Example-umbrella.h │ │ ├── Pods-GLNotificationBar_Example.debug.xcconfig │ │ ├── Pods-GLNotificationBar_Example.modulemap │ │ └── Pods-GLNotificationBar_Example.release.xcconfig │ │ └── Pods-GLNotificationBar_Tests │ │ ├── Info.plist │ │ ├── Pods-GLNotificationBar_Tests-acknowledgements.markdown │ │ ├── Pods-GLNotificationBar_Tests-acknowledgements.plist │ │ ├── Pods-GLNotificationBar_Tests-dummy.m │ │ ├── Pods-GLNotificationBar_Tests-frameworks.sh │ │ ├── Pods-GLNotificationBar_Tests-resources.sh │ │ ├── Pods-GLNotificationBar_Tests-umbrella.h │ │ ├── Pods-GLNotificationBar_Tests.debug.xcconfig │ │ ├── Pods-GLNotificationBar_Tests.modulemap │ │ └── Pods-GLNotificationBar_Tests.release.xcconfig └── Tests │ ├── Info.plist │ └── Tests.swift ├── GLNotificationBar.podspec ├── GLNotificationBar ├── Assets │ ├── .gitkeep │ ├── Close.png │ └── Close@2x.png └── Classes │ ├── .gitkeep │ ├── GLNotificationBar.swift │ └── GLNotificationBar.xib ├── LICENSE ├── README.md ├── ScreenShots ├── Demo.png ├── DetailedBanner.gif ├── SimpleBanner.gif └── TextInput_ActionType.gif └── _Pods.xcodeproj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokulgovind/GLNotificationBar/HEAD/.gitignore -------------------------------------------------------------------------------- /.swift-version: -------------------------------------------------------------------------------- 1 | 3.1 2 | 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokulgovind/GLNotificationBar/HEAD/.travis.yml -------------------------------------------------------------------------------- /Example/GLNotificationBar.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokulgovind/GLNotificationBar/HEAD/Example/GLNotificationBar.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/GLNotificationBar.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokulgovind/GLNotificationBar/HEAD/Example/GLNotificationBar.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/GLNotificationBar.xcodeproj/xcshareddata/xcschemes/GLNotificationBar-Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokulgovind/GLNotificationBar/HEAD/Example/GLNotificationBar.xcodeproj/xcshareddata/xcschemes/GLNotificationBar-Example.xcscheme -------------------------------------------------------------------------------- /Example/GLNotificationBar.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokulgovind/GLNotificationBar/HEAD/Example/GLNotificationBar.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/GLNotificationBar.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokulgovind/GLNotificationBar/HEAD/Example/GLNotificationBar.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/GLNotificationBar.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokulgovind/GLNotificationBar/HEAD/Example/GLNotificationBar.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /Example/GLNotificationBar/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokulgovind/GLNotificationBar/HEAD/Example/GLNotificationBar/AppDelegate.swift -------------------------------------------------------------------------------- /Example/GLNotificationBar/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokulgovind/GLNotificationBar/HEAD/Example/GLNotificationBar/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Example/GLNotificationBar/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokulgovind/GLNotificationBar/HEAD/Example/GLNotificationBar/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/GLNotificationBar/Images.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokulgovind/GLNotificationBar/HEAD/Example/GLNotificationBar/Images.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /Example/GLNotificationBar/Images.xcassets/AppIcon.appiconset/Icon-App-29x29@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokulgovind/GLNotificationBar/HEAD/Example/GLNotificationBar/Images.xcassets/AppIcon.appiconset/Icon-App-29x29@2x-1.png -------------------------------------------------------------------------------- /Example/GLNotificationBar/Images.xcassets/AppIcon.appiconset/Icon-App-29x29@2x-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokulgovind/GLNotificationBar/HEAD/Example/GLNotificationBar/Images.xcassets/AppIcon.appiconset/Icon-App-29x29@2x-2.png -------------------------------------------------------------------------------- /Example/GLNotificationBar/Images.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokulgovind/GLNotificationBar/HEAD/Example/GLNotificationBar/Images.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /Example/GLNotificationBar/Images.xcassets/AppIcon.appiconset/Icon-App-29x29@3x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokulgovind/GLNotificationBar/HEAD/Example/GLNotificationBar/Images.xcassets/AppIcon.appiconset/Icon-App-29x29@3x-1.png -------------------------------------------------------------------------------- /Example/GLNotificationBar/Images.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokulgovind/GLNotificationBar/HEAD/Example/GLNotificationBar/Images.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /Example/GLNotificationBar/Images.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokulgovind/GLNotificationBar/HEAD/Example/GLNotificationBar/Images.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /Example/GLNotificationBar/Images.xcassets/AppIcon.appiconset/Icon-App-40x40@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokulgovind/GLNotificationBar/HEAD/Example/GLNotificationBar/Images.xcassets/AppIcon.appiconset/Icon-App-40x40@2x-1.png -------------------------------------------------------------------------------- /Example/GLNotificationBar/Images.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokulgovind/GLNotificationBar/HEAD/Example/GLNotificationBar/Images.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /Example/GLNotificationBar/Images.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokulgovind/GLNotificationBar/HEAD/Example/GLNotificationBar/Images.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /Example/GLNotificationBar/Images.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokulgovind/GLNotificationBar/HEAD/Example/GLNotificationBar/Images.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /Example/GLNotificationBar/Images.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokulgovind/GLNotificationBar/HEAD/Example/GLNotificationBar/Images.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /Example/GLNotificationBar/Images.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokulgovind/GLNotificationBar/HEAD/Example/GLNotificationBar/Images.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /Example/GLNotificationBar/Images.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokulgovind/GLNotificationBar/HEAD/Example/GLNotificationBar/Images.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /Example/GLNotificationBar/Images.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokulgovind/GLNotificationBar/HEAD/Example/GLNotificationBar/Images.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /Example/GLNotificationBar/Images.xcassets/BG3.imageset/BG3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokulgovind/GLNotificationBar/HEAD/Example/GLNotificationBar/Images.xcassets/BG3.imageset/BG3.jpg -------------------------------------------------------------------------------- /Example/GLNotificationBar/Images.xcassets/BG3.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokulgovind/GLNotificationBar/HEAD/Example/GLNotificationBar/Images.xcassets/BG3.imageset/Contents.json -------------------------------------------------------------------------------- /Example/GLNotificationBar/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokulgovind/GLNotificationBar/HEAD/Example/GLNotificationBar/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /Example/GLNotificationBar/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokulgovind/GLNotificationBar/HEAD/Example/GLNotificationBar/Info.plist -------------------------------------------------------------------------------- /Example/GLNotificationBar/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokulgovind/GLNotificationBar/HEAD/Example/GLNotificationBar/Main.storyboard -------------------------------------------------------------------------------- /Example/GLNotificationBar/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokulgovind/GLNotificationBar/HEAD/Example/GLNotificationBar/ViewController.swift -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokulgovind/GLNotificationBar/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokulgovind/GLNotificationBar/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/GLNotificationBar.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokulgovind/GLNotificationBar/HEAD/Example/Pods/Local Podspecs/GLNotificationBar.podspec.json -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokulgovind/GLNotificationBar/HEAD/Example/Pods/Manifest.lock -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokulgovind/GLNotificationBar/HEAD/Example/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokulgovind/GLNotificationBar/HEAD/Example/Pods/Pods.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokulgovind/GLNotificationBar/HEAD/Example/Pods/Pods.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/GLNotificationBar/GLNotificationBar-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokulgovind/GLNotificationBar/HEAD/Example/Pods/Target Support Files/GLNotificationBar/GLNotificationBar-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/GLNotificationBar/GLNotificationBar-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokulgovind/GLNotificationBar/HEAD/Example/Pods/Target Support Files/GLNotificationBar/GLNotificationBar-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/GLNotificationBar/GLNotificationBar-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokulgovind/GLNotificationBar/HEAD/Example/Pods/Target Support Files/GLNotificationBar/GLNotificationBar-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/GLNotificationBar/GLNotificationBar.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokulgovind/GLNotificationBar/HEAD/Example/Pods/Target Support Files/GLNotificationBar/GLNotificationBar.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/GLNotificationBar/GLNotificationBar.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokulgovind/GLNotificationBar/HEAD/Example/Pods/Target Support Files/GLNotificationBar/GLNotificationBar.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/GLNotificationBar/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokulgovind/GLNotificationBar/HEAD/Example/Pods/Target Support Files/GLNotificationBar/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/GLNotificationBar/ResourceBundle-GLNotificationBar-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokulgovind/GLNotificationBar/HEAD/Example/Pods/Target Support Files/GLNotificationBar/ResourceBundle-GLNotificationBar-Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-GLNotificationBar_Example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokulgovind/GLNotificationBar/HEAD/Example/Pods/Target Support Files/Pods-GLNotificationBar_Example/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-GLNotificationBar_Example/Pods-GLNotificationBar_Example-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokulgovind/GLNotificationBar/HEAD/Example/Pods/Target Support Files/Pods-GLNotificationBar_Example/Pods-GLNotificationBar_Example-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-GLNotificationBar_Example/Pods-GLNotificationBar_Example-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokulgovind/GLNotificationBar/HEAD/Example/Pods/Target Support Files/Pods-GLNotificationBar_Example/Pods-GLNotificationBar_Example-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-GLNotificationBar_Example/Pods-GLNotificationBar_Example-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokulgovind/GLNotificationBar/HEAD/Example/Pods/Target Support Files/Pods-GLNotificationBar_Example/Pods-GLNotificationBar_Example-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-GLNotificationBar_Example/Pods-GLNotificationBar_Example-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokulgovind/GLNotificationBar/HEAD/Example/Pods/Target Support Files/Pods-GLNotificationBar_Example/Pods-GLNotificationBar_Example-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-GLNotificationBar_Example/Pods-GLNotificationBar_Example-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokulgovind/GLNotificationBar/HEAD/Example/Pods/Target Support Files/Pods-GLNotificationBar_Example/Pods-GLNotificationBar_Example-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-GLNotificationBar_Example/Pods-GLNotificationBar_Example-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokulgovind/GLNotificationBar/HEAD/Example/Pods/Target Support Files/Pods-GLNotificationBar_Example/Pods-GLNotificationBar_Example-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-GLNotificationBar_Example/Pods-GLNotificationBar_Example.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokulgovind/GLNotificationBar/HEAD/Example/Pods/Target Support Files/Pods-GLNotificationBar_Example/Pods-GLNotificationBar_Example.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-GLNotificationBar_Example/Pods-GLNotificationBar_Example.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokulgovind/GLNotificationBar/HEAD/Example/Pods/Target Support Files/Pods-GLNotificationBar_Example/Pods-GLNotificationBar_Example.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-GLNotificationBar_Example/Pods-GLNotificationBar_Example.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokulgovind/GLNotificationBar/HEAD/Example/Pods/Target Support Files/Pods-GLNotificationBar_Example/Pods-GLNotificationBar_Example.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-GLNotificationBar_Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokulgovind/GLNotificationBar/HEAD/Example/Pods/Target Support Files/Pods-GLNotificationBar_Tests/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-GLNotificationBar_Tests/Pods-GLNotificationBar_Tests-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokulgovind/GLNotificationBar/HEAD/Example/Pods/Target Support Files/Pods-GLNotificationBar_Tests/Pods-GLNotificationBar_Tests-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-GLNotificationBar_Tests/Pods-GLNotificationBar_Tests-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokulgovind/GLNotificationBar/HEAD/Example/Pods/Target Support Files/Pods-GLNotificationBar_Tests/Pods-GLNotificationBar_Tests-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-GLNotificationBar_Tests/Pods-GLNotificationBar_Tests-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokulgovind/GLNotificationBar/HEAD/Example/Pods/Target Support Files/Pods-GLNotificationBar_Tests/Pods-GLNotificationBar_Tests-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-GLNotificationBar_Tests/Pods-GLNotificationBar_Tests-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokulgovind/GLNotificationBar/HEAD/Example/Pods/Target Support Files/Pods-GLNotificationBar_Tests/Pods-GLNotificationBar_Tests-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-GLNotificationBar_Tests/Pods-GLNotificationBar_Tests-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokulgovind/GLNotificationBar/HEAD/Example/Pods/Target Support Files/Pods-GLNotificationBar_Tests/Pods-GLNotificationBar_Tests-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-GLNotificationBar_Tests/Pods-GLNotificationBar_Tests-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokulgovind/GLNotificationBar/HEAD/Example/Pods/Target Support Files/Pods-GLNotificationBar_Tests/Pods-GLNotificationBar_Tests-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-GLNotificationBar_Tests/Pods-GLNotificationBar_Tests.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokulgovind/GLNotificationBar/HEAD/Example/Pods/Target Support Files/Pods-GLNotificationBar_Tests/Pods-GLNotificationBar_Tests.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-GLNotificationBar_Tests/Pods-GLNotificationBar_Tests.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokulgovind/GLNotificationBar/HEAD/Example/Pods/Target Support Files/Pods-GLNotificationBar_Tests/Pods-GLNotificationBar_Tests.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-GLNotificationBar_Tests/Pods-GLNotificationBar_Tests.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokulgovind/GLNotificationBar/HEAD/Example/Pods/Target Support Files/Pods-GLNotificationBar_Tests/Pods-GLNotificationBar_Tests.release.xcconfig -------------------------------------------------------------------------------- /Example/Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokulgovind/GLNotificationBar/HEAD/Example/Tests/Info.plist -------------------------------------------------------------------------------- /Example/Tests/Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokulgovind/GLNotificationBar/HEAD/Example/Tests/Tests.swift -------------------------------------------------------------------------------- /GLNotificationBar.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokulgovind/GLNotificationBar/HEAD/GLNotificationBar.podspec -------------------------------------------------------------------------------- /GLNotificationBar/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GLNotificationBar/Assets/Close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokulgovind/GLNotificationBar/HEAD/GLNotificationBar/Assets/Close.png -------------------------------------------------------------------------------- /GLNotificationBar/Assets/Close@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokulgovind/GLNotificationBar/HEAD/GLNotificationBar/Assets/Close@2x.png -------------------------------------------------------------------------------- /GLNotificationBar/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GLNotificationBar/Classes/GLNotificationBar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokulgovind/GLNotificationBar/HEAD/GLNotificationBar/Classes/GLNotificationBar.swift -------------------------------------------------------------------------------- /GLNotificationBar/Classes/GLNotificationBar.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokulgovind/GLNotificationBar/HEAD/GLNotificationBar/Classes/GLNotificationBar.xib -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokulgovind/GLNotificationBar/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokulgovind/GLNotificationBar/HEAD/README.md -------------------------------------------------------------------------------- /ScreenShots/Demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokulgovind/GLNotificationBar/HEAD/ScreenShots/Demo.png -------------------------------------------------------------------------------- /ScreenShots/DetailedBanner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokulgovind/GLNotificationBar/HEAD/ScreenShots/DetailedBanner.gif -------------------------------------------------------------------------------- /ScreenShots/SimpleBanner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokulgovind/GLNotificationBar/HEAD/ScreenShots/SimpleBanner.gif -------------------------------------------------------------------------------- /ScreenShots/TextInput_ActionType.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokulgovind/GLNotificationBar/HEAD/ScreenShots/TextInput_ActionType.gif -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj --------------------------------------------------------------------------------