-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
59 additions
and
4 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
import 'package:flutter_local_notifications/flutter_local_notifications.dart'; | ||
|
||
class NotificationService { | ||
static final NotificationService _notificationService = NotificationService._internal(); | ||
final FlutterLocalNotificationsPlugin flutterLocalNotificationsPlugin = FlutterLocalNotificationsPlugin(); | ||
|
||
NotificationDetails platformChannelSpecifics = const NotificationDetails( | ||
android: AndroidNotificationDetails( | ||
"0", | ||
"Flutter Local Notification", | ||
importance: Importance.defaultImportance, | ||
priority: Priority.defaultPriority, | ||
), | ||
); | ||
|
||
factory NotificationService() { | ||
return _notificationService; | ||
} | ||
|
||
NotificationService._internal(); | ||
|
||
Future<void> init() async { | ||
const AndroidInitializationSettings initializationSettingsAndroid = AndroidInitializationSettings('app_icon'); | ||
|
||
const InitializationSettings initializationSettings = | ||
InitializationSettings(android: initializationSettingsAndroid); | ||
|
||
await flutterLocalNotificationsPlugin.initialize( | ||
initializationSettings, | ||
); | ||
} | ||
|
||
void sendAndoidNotification({required String title, required String body}) async { | ||
await flutterLocalNotificationsPlugin.show( | ||
0, | ||
title, | ||
body, | ||
platformChannelSpecifics, | ||
payload: 'data', | ||
); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters