notification_listener 1.0.2+1 notification_listener: ^1.0.2+1 copied to clipboard
Flutter Plugin to listen to all incoming notifications (posted or removed) with the possibility to reply to them
import 'package:flutter/material.dart';
void main() {
WidgetsFlutterBinding.ensureInitialized();
runApp(const MainScreen());
}
class MainScreen extends StatelessWidget {
const MainScreen({super.key});
@override
Widget build(BuildContext context) {
return const MaterialApp();
}
}