skip to Main Content

Firebase – How to handle screen navigation in Flutter when clicking on a Push Notification?

I have made this file push_notifications.dart import 'dart:io'; import 'package:firebase_core/firebase_core.dart'; import 'package:firebase_messaging/firebase_messaging.dart'; import 'package:flutter/material.dart'; import 'package:flutter_local_notifications/flutter_local_notifications.dart'; const AndroidNotificationChannel androidSettings = AndroidNotificationChannel( 'high_importance_channel', // id 'High Importance Notifications', // title// description importance: Importance.high, playSound: true); var iOSSettings = const IOSInitializationSettings( defaultPresentAlert:…

VIEW QUESTION
Back To Top
Search