Skip to content

Commit 24d15d1

Browse files
committed
feat(README): update feature list and description
- Remove foreground notification handling feature - Add integrated notification center feature with subtle in-app indicator and unread count - Improve description for better clarity
1 parent c6d07e3 commit 24d15d1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ A robust, backend-driven notification system keeps users informed and brings the
5050
- **Multi-Provider Architecture:** Built on an abstraction that supports any push notification service. It ships with production-ready providers for Firebase (FCM) and OneSignal.
5151
- **Remote Provider Switching:** The primary notification provider is selected via remote configuration, allowing you to switch services on the fly without shipping an app update.
5252
- **Intelligent Deep-Linking:** Tapping a notification opens the app and navigates directly to the relevant content, such as a specific news article, providing a seamless user experience.
53-
- **Foreground Notification Handling:** Displays a subtle in-app indicator when a notification arrives while the user is active, avoiding intrusive alerts.
53+
- **Integrated Notification Center:** Includes a full-featured in-app notification center where users can view their history. Foreground notifications are handled gracefully, appearing as an unread indicator that leads the user to this central hub, avoiding intrusive system alerts during active use.
5454
> **Your Advantage:** You get a highly flexible and scalable notification system that avoids vendor lock-in and is ready to re-engage users from day one.
5555
5656
</details>

lib/notifications/services/no_op_push_notification_service.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
import 'dart:async';
2+
23
import 'package:core/core.dart';
34
import 'package:data_repository/data_repository.dart';
45
import 'package:flutter/foundation.dart';
56
import 'package:flutter_news_app_mobile_client_full_source_code/app/config/app_environment.dart';
6-
import 'package:flutter_news_app_mobile_client_full_source_code/app/bloc/app_bloc.dart';
77
import 'package:flutter_news_app_mobile_client_full_source_code/notifications/services/push_notification_service.dart';
88

99
/// {@template no_op_push_notification_service}

0 commit comments

Comments
 (0)