├── .fvmrc ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── config.yml │ ├── documentation_update.md │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE.md ├── PULL_REQUEST_TEMPLATE │ ├── bug_fix.md │ ├── documentation_update.md │ └── new_feature.md └── workflows │ ├── on_close_issue_add_comment_to_pyrus_task.yml │ ├── on_close_pr_add_comment_to_pyrus_task.yml │ ├── on_open_issue_create_pyrus_task.yml │ ├── on_open_pr_create_pyrus_task.yml │ ├── on_pull_request.yml │ └── publish_to_pub.yml ├── .gitignore ├── .metadata ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── analysis_options.yaml ├── android ├── .gitignore ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ └── gradle-wrapper.properties ├── settings.gradle ├── src │ └── main │ │ ├── AndroidManifest.xml │ │ ├── kotlin │ │ └── pushnotification │ │ │ └── push_notification │ │ │ ├── PushNotificationPlugin.kt │ │ │ ├── handler │ │ │ └── PushHandler.kt │ │ │ ├── notification │ │ │ └── PushNotificationData.kt │ │ │ ├── strategy │ │ │ └── PushStrategy.kt │ │ │ └── type │ │ │ └── PushNotificationTypeData.kt │ │ └── res │ │ └── values │ │ └── strings.xml └── values │ └── strings.xml ├── dart_dependency_validator.yaml ├── example ├── .fvm │ └── fvm_config.json ├── .gitignore ├── .metadata ├── analysis_options.yaml ├── android │ ├── .gitignore │ ├── app │ │ ├── build.gradle │ │ ├── google-services.json │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ └── res │ │ │ │ ├── drawable-v21 │ │ │ │ └── launch_background.xml │ │ │ │ ├── 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-night │ │ │ │ └── styles.xml │ │ │ │ └── values │ │ │ │ └── styles.xml │ │ │ └── profile │ │ │ └── AndroidManifest.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ └── gradle-wrapper.properties │ └── settings.gradle ├── ios │ ├── .gitignore │ ├── Flutter │ │ ├── .last_build_id │ │ ├── AppFrameworkInfo.plist │ │ ├── Debug.xcconfig │ │ └── Release.xcconfig │ ├── Podfile │ ├── Runner.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ └── WorkspaceSettings.xcsettings │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Runner.xcscheme │ ├── Runner.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── WorkspaceSettings.xcsettings │ ├── 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 │ │ ├── GoogleService-Info.plist │ │ ├── Info.plist │ │ ├── Runner-Bridging-Header.h │ │ └── Runner.entitlements │ └── firebase_app_id_file.json ├── lib │ ├── domain │ │ └── message.dart │ ├── main.dart │ ├── notification │ │ ├── example_factory.dart │ │ ├── first_strategy.dart │ │ ├── messaging_service.dart │ │ └── second_strategy.dart │ ├── ui │ │ ├── app.dart │ │ ├── first_screen.dart │ │ ├── main_screen.dart │ │ ├── message_list.dart │ │ └── second_screen.dart │ └── utils │ │ └── logger.dart ├── pubspec.yaml └── scripts │ ├── package-lock.json │ ├── package.json │ └── send-message.js ├── ios ├── .gitignore ├── Assets │ └── .gitkeep ├── Classes │ ├── PushNotificationPlugin.h │ ├── PushNotificationPlugin.m │ └── SwiftPushNotificationPlugin.swift └── push_notification.podspec ├── lib ├── push_notification.dart └── src │ ├── base │ ├── base_messaging_service.dart │ ├── notification_payload.dart │ ├── push_handle_strategy.dart │ └── push_handle_strategy_factory.dart │ ├── notification │ ├── notification_controller.dart │ └── notificator │ │ ├── android │ │ ├── android_notiffication_specifics.dart │ │ └── android_notification.dart │ │ ├── ios │ │ ├── ios_notification.dart │ │ └── ios_notification_specifics.dart │ │ ├── notification_specifics.dart │ │ └── notificator.dart │ ├── push_handler.dart │ ├── push_navigator_holder.dart │ ├── push_observer.dart │ └── util │ └── platform_wrapper.dart ├── pubspec.yaml └── test ├── android_notification_test.dart ├── ios_notifiation_test.dart ├── notification_controller_test.dart ├── notificator_test.dart ├── platform_wrapper_test.dart ├── push_handle_strategy_factory_test.dart ├── push_handle_strategy_test.dart ├── push_handler_test.dart ├── push_navigator_holder_test.dart └── push_observer_test.dart /.fvmrc: -------------------------------------------------------------------------------- 1 | { 2 | "flutter": "3.19.5" 3 | } -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/flutter-push-notification/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/flutter-push-notification/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/documentation_update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/flutter-push-notification/HEAD/.github/ISSUE_TEMPLATE/documentation_update.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/flutter-push-notification/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/flutter-push-notification/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE/bug_fix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/flutter-push-notification/HEAD/.github/PULL_REQUEST_TEMPLATE/bug_fix.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE/documentation_update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/flutter-push-notification/HEAD/.github/PULL_REQUEST_TEMPLATE/documentation_update.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE/new_feature.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/flutter-push-notification/HEAD/.github/PULL_REQUEST_TEMPLATE/new_feature.md -------------------------------------------------------------------------------- /.github/workflows/on_close_issue_add_comment_to_pyrus_task.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/flutter-push-notification/HEAD/.github/workflows/on_close_issue_add_comment_to_pyrus_task.yml -------------------------------------------------------------------------------- /.github/workflows/on_close_pr_add_comment_to_pyrus_task.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/flutter-push-notification/HEAD/.github/workflows/on_close_pr_add_comment_to_pyrus_task.yml -------------------------------------------------------------------------------- /.github/workflows/on_open_issue_create_pyrus_task.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/flutter-push-notification/HEAD/.github/workflows/on_open_issue_create_pyrus_task.yml -------------------------------------------------------------------------------- /.github/workflows/on_open_pr_create_pyrus_task.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/flutter-push-notification/HEAD/.github/workflows/on_open_pr_create_pyrus_task.yml -------------------------------------------------------------------------------- /.github/workflows/on_pull_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/flutter-push-notification/HEAD/.github/workflows/on_pull_request.yml -------------------------------------------------------------------------------- /.github/workflows/publish_to_pub.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/flutter-push-notification/HEAD/.github/workflows/publish_to_pub.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/flutter-push-notification/HEAD/.gitignore -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/flutter-push-notification/HEAD/.metadata -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/flutter-push-notification/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/flutter-push-notification/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/flutter-push-notification/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/flutter-push-notification/HEAD/README.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- 1 | include: package:surf_lint_rules/analysis_options.yaml 2 | -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/flutter-push-notification/HEAD/android/.gitignore -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/flutter-push-notification/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/flutter-push-notification/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/flutter-push-notification/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'push_notification' 2 | -------------------------------------------------------------------------------- /android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/flutter-push-notification/HEAD/android/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/src/main/kotlin/pushnotification/push_notification/PushNotificationPlugin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/flutter-push-notification/HEAD/android/src/main/kotlin/pushnotification/push_notification/PushNotificationPlugin.kt -------------------------------------------------------------------------------- /android/src/main/kotlin/pushnotification/push_notification/handler/PushHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/flutter-push-notification/HEAD/android/src/main/kotlin/pushnotification/push_notification/handler/PushHandler.kt -------------------------------------------------------------------------------- /android/src/main/kotlin/pushnotification/push_notification/notification/PushNotificationData.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/flutter-push-notification/HEAD/android/src/main/kotlin/pushnotification/push_notification/notification/PushNotificationData.kt -------------------------------------------------------------------------------- /android/src/main/kotlin/pushnotification/push_notification/strategy/PushStrategy.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/flutter-push-notification/HEAD/android/src/main/kotlin/pushnotification/push_notification/strategy/PushStrategy.kt -------------------------------------------------------------------------------- /android/src/main/kotlin/pushnotification/push_notification/type/PushNotificationTypeData.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/flutter-push-notification/HEAD/android/src/main/kotlin/pushnotification/push_notification/type/PushNotificationTypeData.kt -------------------------------------------------------------------------------- /android/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/flutter-push-notification/HEAD/android/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/flutter-push-notification/HEAD/android/values/strings.xml -------------------------------------------------------------------------------- /dart_dependency_validator.yaml: -------------------------------------------------------------------------------- 1 | exclude: 2 | - "example/**" 3 | -------------------------------------------------------------------------------- /example/.fvm/fvm_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/flutter-push-notification/HEAD/example/.fvm/fvm_config.json -------------------------------------------------------------------------------- /example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/flutter-push-notification/HEAD/example/.gitignore -------------------------------------------------------------------------------- /example/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/flutter-push-notification/HEAD/example/.metadata -------------------------------------------------------------------------------- /example/analysis_options.yaml: -------------------------------------------------------------------------------- 1 | include: package:surf_lint_rules/analysis_options.yaml 2 | -------------------------------------------------------------------------------- /example/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/flutter-push-notification/HEAD/example/android/.gitignore -------------------------------------------------------------------------------- /example/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/flutter-push-notification/HEAD/example/android/app/build.gradle -------------------------------------------------------------------------------- /example/android/app/google-services.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/flutter-push-notification/HEAD/example/android/app/google-services.json -------------------------------------------------------------------------------- /example/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/flutter-push-notification/HEAD/example/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/flutter-push-notification/HEAD/example/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/drawable-v21/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/flutter-push-notification/HEAD/example/android/app/src/main/res/drawable-v21/launch_background.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/flutter-push-notification/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/surfstudio/flutter-push-notification/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/surfstudio/flutter-push-notification/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/surfstudio/flutter-push-notification/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/surfstudio/flutter-push-notification/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/surfstudio/flutter-push-notification/HEAD/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/flutter-push-notification/HEAD/example/android/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/flutter-push-notification/HEAD/example/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /example/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/flutter-push-notification/HEAD/example/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/flutter-push-notification/HEAD/example/android/build.gradle -------------------------------------------------------------------------------- /example/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/flutter-push-notification/HEAD/example/android/gradle.properties -------------------------------------------------------------------------------- /example/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/flutter-push-notification/HEAD/example/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /example/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/flutter-push-notification/HEAD/example/android/settings.gradle -------------------------------------------------------------------------------- /example/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/flutter-push-notification/HEAD/example/ios/.gitignore -------------------------------------------------------------------------------- /example/ios/Flutter/.last_build_id: -------------------------------------------------------------------------------- 1 | 25930036dcbf7351ddfc501cfd18d63f -------------------------------------------------------------------------------- /example/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/flutter-push-notification/HEAD/example/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /example/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/flutter-push-notification/HEAD/example/ios/Flutter/Debug.xcconfig -------------------------------------------------------------------------------- /example/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/flutter-push-notification/HEAD/example/ios/Flutter/Release.xcconfig -------------------------------------------------------------------------------- /example/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/flutter-push-notification/HEAD/example/ios/Podfile -------------------------------------------------------------------------------- /example/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/flutter-push-notification/HEAD/example/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/flutter-push-notification/HEAD/example/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/flutter-push-notification/HEAD/example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/flutter-push-notification/HEAD/example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /example/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/flutter-push-notification/HEAD/example/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /example/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/flutter-push-notification/HEAD/example/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/flutter-push-notification/HEAD/example/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /example/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/flutter-push-notification/HEAD/example/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /example/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/flutter-push-notification/HEAD/example/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/flutter-push-notification/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/surfstudio/flutter-push-notification/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/surfstudio/flutter-push-notification/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/surfstudio/flutter-push-notification/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/surfstudio/flutter-push-notification/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/surfstudio/flutter-push-notification/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/surfstudio/flutter-push-notification/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/surfstudio/flutter-push-notification/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/surfstudio/flutter-push-notification/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/surfstudio/flutter-push-notification/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/surfstudio/flutter-push-notification/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/surfstudio/flutter-push-notification/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/surfstudio/flutter-push-notification/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/surfstudio/flutter-push-notification/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/surfstudio/flutter-push-notification/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/surfstudio/flutter-push-notification/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/surfstudio/flutter-push-notification/HEAD/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/flutter-push-notification/HEAD/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/flutter-push-notification/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/surfstudio/flutter-push-notification/HEAD/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /example/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/flutter-push-notification/HEAD/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /example/ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/flutter-push-notification/HEAD/example/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /example/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/flutter-push-notification/HEAD/example/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /example/ios/Runner/GoogleService-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/flutter-push-notification/HEAD/example/ios/Runner/GoogleService-Info.plist -------------------------------------------------------------------------------- /example/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/flutter-push-notification/HEAD/example/ios/Runner/Info.plist -------------------------------------------------------------------------------- /example/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /example/ios/Runner/Runner.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/flutter-push-notification/HEAD/example/ios/Runner/Runner.entitlements -------------------------------------------------------------------------------- /example/ios/firebase_app_id_file.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/flutter-push-notification/HEAD/example/ios/firebase_app_id_file.json -------------------------------------------------------------------------------- /example/lib/domain/message.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/flutter-push-notification/HEAD/example/lib/domain/message.dart -------------------------------------------------------------------------------- /example/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/flutter-push-notification/HEAD/example/lib/main.dart -------------------------------------------------------------------------------- /example/lib/notification/example_factory.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/flutter-push-notification/HEAD/example/lib/notification/example_factory.dart -------------------------------------------------------------------------------- /example/lib/notification/first_strategy.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/flutter-push-notification/HEAD/example/lib/notification/first_strategy.dart -------------------------------------------------------------------------------- /example/lib/notification/messaging_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/flutter-push-notification/HEAD/example/lib/notification/messaging_service.dart -------------------------------------------------------------------------------- /example/lib/notification/second_strategy.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/flutter-push-notification/HEAD/example/lib/notification/second_strategy.dart -------------------------------------------------------------------------------- /example/lib/ui/app.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/flutter-push-notification/HEAD/example/lib/ui/app.dart -------------------------------------------------------------------------------- /example/lib/ui/first_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/flutter-push-notification/HEAD/example/lib/ui/first_screen.dart -------------------------------------------------------------------------------- /example/lib/ui/main_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/flutter-push-notification/HEAD/example/lib/ui/main_screen.dart -------------------------------------------------------------------------------- /example/lib/ui/message_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/flutter-push-notification/HEAD/example/lib/ui/message_list.dart -------------------------------------------------------------------------------- /example/lib/ui/second_screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/flutter-push-notification/HEAD/example/lib/ui/second_screen.dart -------------------------------------------------------------------------------- /example/lib/utils/logger.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/flutter-push-notification/HEAD/example/lib/utils/logger.dart -------------------------------------------------------------------------------- /example/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/flutter-push-notification/HEAD/example/pubspec.yaml -------------------------------------------------------------------------------- /example/scripts/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/flutter-push-notification/HEAD/example/scripts/package-lock.json -------------------------------------------------------------------------------- /example/scripts/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/flutter-push-notification/HEAD/example/scripts/package.json -------------------------------------------------------------------------------- /example/scripts/send-message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/flutter-push-notification/HEAD/example/scripts/send-message.js -------------------------------------------------------------------------------- /ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/flutter-push-notification/HEAD/ios/.gitignore -------------------------------------------------------------------------------- /ios/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ios/Classes/PushNotificationPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/flutter-push-notification/HEAD/ios/Classes/PushNotificationPlugin.h -------------------------------------------------------------------------------- /ios/Classes/PushNotificationPlugin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/flutter-push-notification/HEAD/ios/Classes/PushNotificationPlugin.m -------------------------------------------------------------------------------- /ios/Classes/SwiftPushNotificationPlugin.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/flutter-push-notification/HEAD/ios/Classes/SwiftPushNotificationPlugin.swift -------------------------------------------------------------------------------- /ios/push_notification.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/flutter-push-notification/HEAD/ios/push_notification.podspec -------------------------------------------------------------------------------- /lib/push_notification.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/flutter-push-notification/HEAD/lib/push_notification.dart -------------------------------------------------------------------------------- /lib/src/base/base_messaging_service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/flutter-push-notification/HEAD/lib/src/base/base_messaging_service.dart -------------------------------------------------------------------------------- /lib/src/base/notification_payload.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/flutter-push-notification/HEAD/lib/src/base/notification_payload.dart -------------------------------------------------------------------------------- /lib/src/base/push_handle_strategy.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/flutter-push-notification/HEAD/lib/src/base/push_handle_strategy.dart -------------------------------------------------------------------------------- /lib/src/base/push_handle_strategy_factory.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/flutter-push-notification/HEAD/lib/src/base/push_handle_strategy_factory.dart -------------------------------------------------------------------------------- /lib/src/notification/notification_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/flutter-push-notification/HEAD/lib/src/notification/notification_controller.dart -------------------------------------------------------------------------------- /lib/src/notification/notificator/android/android_notiffication_specifics.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/flutter-push-notification/HEAD/lib/src/notification/notificator/android/android_notiffication_specifics.dart -------------------------------------------------------------------------------- /lib/src/notification/notificator/android/android_notification.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/flutter-push-notification/HEAD/lib/src/notification/notificator/android/android_notification.dart -------------------------------------------------------------------------------- /lib/src/notification/notificator/ios/ios_notification.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/flutter-push-notification/HEAD/lib/src/notification/notificator/ios/ios_notification.dart -------------------------------------------------------------------------------- /lib/src/notification/notificator/ios/ios_notification_specifics.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/flutter-push-notification/HEAD/lib/src/notification/notificator/ios/ios_notification_specifics.dart -------------------------------------------------------------------------------- /lib/src/notification/notificator/notification_specifics.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/flutter-push-notification/HEAD/lib/src/notification/notificator/notification_specifics.dart -------------------------------------------------------------------------------- /lib/src/notification/notificator/notificator.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/flutter-push-notification/HEAD/lib/src/notification/notificator/notificator.dart -------------------------------------------------------------------------------- /lib/src/push_handler.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/flutter-push-notification/HEAD/lib/src/push_handler.dart -------------------------------------------------------------------------------- /lib/src/push_navigator_holder.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/flutter-push-notification/HEAD/lib/src/push_navigator_holder.dart -------------------------------------------------------------------------------- /lib/src/push_observer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/flutter-push-notification/HEAD/lib/src/push_observer.dart -------------------------------------------------------------------------------- /lib/src/util/platform_wrapper.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/flutter-push-notification/HEAD/lib/src/util/platform_wrapper.dart -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/flutter-push-notification/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /test/android_notification_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/flutter-push-notification/HEAD/test/android_notification_test.dart -------------------------------------------------------------------------------- /test/ios_notifiation_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/flutter-push-notification/HEAD/test/ios_notifiation_test.dart -------------------------------------------------------------------------------- /test/notification_controller_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/flutter-push-notification/HEAD/test/notification_controller_test.dart -------------------------------------------------------------------------------- /test/notificator_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/flutter-push-notification/HEAD/test/notificator_test.dart -------------------------------------------------------------------------------- /test/platform_wrapper_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/flutter-push-notification/HEAD/test/platform_wrapper_test.dart -------------------------------------------------------------------------------- /test/push_handle_strategy_factory_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/flutter-push-notification/HEAD/test/push_handle_strategy_factory_test.dart -------------------------------------------------------------------------------- /test/push_handle_strategy_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/flutter-push-notification/HEAD/test/push_handle_strategy_test.dart -------------------------------------------------------------------------------- /test/push_handler_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/flutter-push-notification/HEAD/test/push_handler_test.dart -------------------------------------------------------------------------------- /test/push_navigator_holder_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/flutter-push-notification/HEAD/test/push_navigator_holder_test.dart -------------------------------------------------------------------------------- /test/push_observer_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/surfstudio/flutter-push-notification/HEAD/test/push_observer_test.dart --------------------------------------------------------------------------------