├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── android ├── .gitignore ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── settings.gradle └── src │ └── main │ ├── AndroidManifest.xml │ └── java │ └── com │ └── mythichelm │ └── localnotifications │ ├── GenerateLocalNotificationsTask.java │ ├── LocalNotificationsPlugin.java │ ├── entities │ ├── NotificationAction.java │ ├── NotificationChannelSettings.java │ └── NotificationSettings.java │ ├── factories │ ├── INotificationChannelSettingsFactory.java │ ├── INotificationFactory.java │ ├── INotificationSettingsFactory.java │ ├── NotificationChannelSettingsFactory.java │ ├── NotificationFactory.java │ └── NotificationSettingsFactory.java │ └── services │ └── LocalNotificationsService.java ├── documentation ├── LocalNotifications.md ├── README_old.md └── ToDo.md ├── example ├── .gitignore ├── .metadata ├── README.md ├── android │ ├── .gitignore │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── mythichelm │ │ │ │ └── localnotificationsexample │ │ │ │ └── MainActivity.java │ │ │ └── res │ │ │ ├── drawable │ │ │ └── launch_background.xml │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ │ └── values │ │ │ └── styles.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── ios │ ├── .gitignore │ ├── Flutter │ │ ├── AppFrameworkInfo.plist │ │ ├── Debug.xcconfig │ │ └── Release.xcconfig │ ├── Podfile │ ├── Runner.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Runner.xcscheme │ ├── Runner.xcworkspace │ │ └── contents.xcworkspacedata │ └── Runner │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ ├── Icon-App-20x20@1x.png │ │ │ ├── Icon-App-20x20@2x.png │ │ │ ├── Icon-App-20x20@3x.png │ │ │ ├── Icon-App-29x29@1x.png │ │ │ ├── Icon-App-29x29@2x.png │ │ │ ├── Icon-App-29x29@3x.png │ │ │ ├── Icon-App-40x40@1x.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 │ │ └── LaunchImage.imageset │ │ │ ├── Contents.json │ │ │ ├── LaunchImage.png │ │ │ ├── LaunchImage@2x.png │ │ │ ├── LaunchImage@3x.png │ │ │ └── README.md │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── Info.plist │ │ └── Runner-Bridging-Header.h ├── lib │ └── main.dart ├── local_notifications_example.iml ├── local_notifications_example_android.iml ├── pubspec.yaml └── test │ └── widget_test.dart ├── gifs ├── basic_notification.gif ├── notification_multiple_actions.gif ├── notification_with_image.gif ├── notification_with_payload.gif ├── notification_with_payload_in_background.gif ├── remove_notification.gif └── undismissable.gif ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── ios ├── .gitignore ├── Assets │ └── .gitkeep ├── Classes │ ├── LocalNotificationsPlugin.h │ ├── LocalNotificationsPlugin.m │ └── SwiftLocalNotificationsPlugin.swift └── local_notifications.podspec ├── lib ├── local_notifications.dart └── src │ ├── android_settings.dart │ ├── ios_settings.dart │ ├── local_notifications.dart │ └── notification_action.dart ├── local_notifications.iml ├── local_notifications_android.iml └── pubspec.yaml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/local_notifications/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/local_notifications/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/local_notifications/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/local_notifications/HEAD/README.md -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/local_notifications/HEAD/android/.gitignore -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/local_notifications/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/local_notifications/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/local_notifications/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/local_notifications/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/local_notifications/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'local_notifications' 2 | -------------------------------------------------------------------------------- /android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/local_notifications/HEAD/android/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/src/main/java/com/mythichelm/localnotifications/GenerateLocalNotificationsTask.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/local_notifications/HEAD/android/src/main/java/com/mythichelm/localnotifications/GenerateLocalNotificationsTask.java -------------------------------------------------------------------------------- /android/src/main/java/com/mythichelm/localnotifications/LocalNotificationsPlugin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/local_notifications/HEAD/android/src/main/java/com/mythichelm/localnotifications/LocalNotificationsPlugin.java -------------------------------------------------------------------------------- /android/src/main/java/com/mythichelm/localnotifications/entities/NotificationAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/local_notifications/HEAD/android/src/main/java/com/mythichelm/localnotifications/entities/NotificationAction.java -------------------------------------------------------------------------------- /android/src/main/java/com/mythichelm/localnotifications/entities/NotificationChannelSettings.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/local_notifications/HEAD/android/src/main/java/com/mythichelm/localnotifications/entities/NotificationChannelSettings.java -------------------------------------------------------------------------------- /android/src/main/java/com/mythichelm/localnotifications/entities/NotificationSettings.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/local_notifications/HEAD/android/src/main/java/com/mythichelm/localnotifications/entities/NotificationSettings.java -------------------------------------------------------------------------------- /android/src/main/java/com/mythichelm/localnotifications/factories/INotificationChannelSettingsFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/local_notifications/HEAD/android/src/main/java/com/mythichelm/localnotifications/factories/INotificationChannelSettingsFactory.java -------------------------------------------------------------------------------- /android/src/main/java/com/mythichelm/localnotifications/factories/INotificationFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/local_notifications/HEAD/android/src/main/java/com/mythichelm/localnotifications/factories/INotificationFactory.java -------------------------------------------------------------------------------- /android/src/main/java/com/mythichelm/localnotifications/factories/INotificationSettingsFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/local_notifications/HEAD/android/src/main/java/com/mythichelm/localnotifications/factories/INotificationSettingsFactory.java -------------------------------------------------------------------------------- /android/src/main/java/com/mythichelm/localnotifications/factories/NotificationChannelSettingsFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/local_notifications/HEAD/android/src/main/java/com/mythichelm/localnotifications/factories/NotificationChannelSettingsFactory.java -------------------------------------------------------------------------------- /android/src/main/java/com/mythichelm/localnotifications/factories/NotificationFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/local_notifications/HEAD/android/src/main/java/com/mythichelm/localnotifications/factories/NotificationFactory.java -------------------------------------------------------------------------------- /android/src/main/java/com/mythichelm/localnotifications/factories/NotificationSettingsFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/local_notifications/HEAD/android/src/main/java/com/mythichelm/localnotifications/factories/NotificationSettingsFactory.java -------------------------------------------------------------------------------- /android/src/main/java/com/mythichelm/localnotifications/services/LocalNotificationsService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/local_notifications/HEAD/android/src/main/java/com/mythichelm/localnotifications/services/LocalNotificationsService.java -------------------------------------------------------------------------------- /documentation/LocalNotifications.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/local_notifications/HEAD/documentation/LocalNotifications.md -------------------------------------------------------------------------------- /documentation/README_old.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/local_notifications/HEAD/documentation/README_old.md -------------------------------------------------------------------------------- /documentation/ToDo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/local_notifications/HEAD/documentation/ToDo.md -------------------------------------------------------------------------------- /example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/local_notifications/HEAD/example/.gitignore -------------------------------------------------------------------------------- /example/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/local_notifications/HEAD/example/.metadata -------------------------------------------------------------------------------- /example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/local_notifications/HEAD/example/README.md -------------------------------------------------------------------------------- /example/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/local_notifications/HEAD/example/android/.gitignore -------------------------------------------------------------------------------- /example/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/local_notifications/HEAD/example/android/app/build.gradle -------------------------------------------------------------------------------- /example/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/local_notifications/HEAD/example/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/app/src/main/java/com/mythichelm/localnotificationsexample/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/local_notifications/HEAD/example/android/app/src/main/java/com/mythichelm/localnotificationsexample/MainActivity.java -------------------------------------------------------------------------------- /example/android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/local_notifications/HEAD/example/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/local_notifications/HEAD/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/local_notifications/HEAD/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/local_notifications/HEAD/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/local_notifications/HEAD/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/local_notifications/HEAD/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/local_notifications/HEAD/example/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /example/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/local_notifications/HEAD/example/android/build.gradle -------------------------------------------------------------------------------- /example/android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | -------------------------------------------------------------------------------- /example/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/local_notifications/HEAD/example/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /example/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/local_notifications/HEAD/example/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /example/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/local_notifications/HEAD/example/android/gradlew -------------------------------------------------------------------------------- /example/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/local_notifications/HEAD/example/android/gradlew.bat -------------------------------------------------------------------------------- /example/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/local_notifications/HEAD/example/android/settings.gradle -------------------------------------------------------------------------------- /example/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/local_notifications/HEAD/example/ios/.gitignore -------------------------------------------------------------------------------- /example/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/local_notifications/HEAD/example/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /example/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/local_notifications/HEAD/example/ios/Flutter/Debug.xcconfig -------------------------------------------------------------------------------- /example/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/local_notifications/HEAD/example/ios/Flutter/Release.xcconfig -------------------------------------------------------------------------------- /example/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/local_notifications/HEAD/example/ios/Podfile -------------------------------------------------------------------------------- /example/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/local_notifications/HEAD/example/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/local_notifications/HEAD/example/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/local_notifications/HEAD/example/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /example/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/local_notifications/HEAD/example/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/local_notifications/HEAD/example/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/local_notifications/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/local_notifications/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/local_notifications/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/local_notifications/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/local_notifications/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/local_notifications/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/local_notifications/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/local_notifications/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/local_notifications/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/local_notifications/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/local_notifications/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/local_notifications/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/local_notifications/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/local_notifications/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/local_notifications/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/local_notifications/HEAD/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/local_notifications/HEAD/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/local_notifications/HEAD/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/local_notifications/HEAD/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/local_notifications/HEAD/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/local_notifications/HEAD/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /example/ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/local_notifications/HEAD/example/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /example/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/local_notifications/HEAD/example/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /example/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/local_notifications/HEAD/example/ios/Runner/Info.plist -------------------------------------------------------------------------------- /example/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" -------------------------------------------------------------------------------- /example/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/local_notifications/HEAD/example/lib/main.dart -------------------------------------------------------------------------------- /example/local_notifications_example.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/local_notifications/HEAD/example/local_notifications_example.iml -------------------------------------------------------------------------------- /example/local_notifications_example_android.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/local_notifications/HEAD/example/local_notifications_example_android.iml -------------------------------------------------------------------------------- /example/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/local_notifications/HEAD/example/pubspec.yaml -------------------------------------------------------------------------------- /example/test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/local_notifications/HEAD/example/test/widget_test.dart -------------------------------------------------------------------------------- /gifs/basic_notification.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/local_notifications/HEAD/gifs/basic_notification.gif -------------------------------------------------------------------------------- /gifs/notification_multiple_actions.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/local_notifications/HEAD/gifs/notification_multiple_actions.gif -------------------------------------------------------------------------------- /gifs/notification_with_image.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/local_notifications/HEAD/gifs/notification_with_image.gif -------------------------------------------------------------------------------- /gifs/notification_with_payload.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/local_notifications/HEAD/gifs/notification_with_payload.gif -------------------------------------------------------------------------------- /gifs/notification_with_payload_in_background.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/local_notifications/HEAD/gifs/notification_with_payload_in_background.gif -------------------------------------------------------------------------------- /gifs/remove_notification.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/local_notifications/HEAD/gifs/remove_notification.gif -------------------------------------------------------------------------------- /gifs/undismissable.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/local_notifications/HEAD/gifs/undismissable.gif -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/local_notifications/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/local_notifications/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/local_notifications/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/local_notifications/HEAD/gradlew.bat -------------------------------------------------------------------------------- /ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/local_notifications/HEAD/ios/.gitignore -------------------------------------------------------------------------------- /ios/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ios/Classes/LocalNotificationsPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/local_notifications/HEAD/ios/Classes/LocalNotificationsPlugin.h -------------------------------------------------------------------------------- /ios/Classes/LocalNotificationsPlugin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/local_notifications/HEAD/ios/Classes/LocalNotificationsPlugin.m -------------------------------------------------------------------------------- /ios/Classes/SwiftLocalNotificationsPlugin.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/local_notifications/HEAD/ios/Classes/SwiftLocalNotificationsPlugin.swift -------------------------------------------------------------------------------- /ios/local_notifications.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/local_notifications/HEAD/ios/local_notifications.podspec -------------------------------------------------------------------------------- /lib/local_notifications.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/local_notifications/HEAD/lib/local_notifications.dart -------------------------------------------------------------------------------- /lib/src/android_settings.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/local_notifications/HEAD/lib/src/android_settings.dart -------------------------------------------------------------------------------- /lib/src/ios_settings.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/local_notifications/HEAD/lib/src/ios_settings.dart -------------------------------------------------------------------------------- /lib/src/local_notifications.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/local_notifications/HEAD/lib/src/local_notifications.dart -------------------------------------------------------------------------------- /lib/src/notification_action.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/local_notifications/HEAD/lib/src/notification_action.dart -------------------------------------------------------------------------------- /local_notifications.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/local_notifications/HEAD/local_notifications.iml -------------------------------------------------------------------------------- /local_notifications_android.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/local_notifications/HEAD/local_notifications_android.iml -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchhymel/local_notifications/HEAD/pubspec.yaml --------------------------------------------------------------------------------