notification_channel_manager 0.0.3-dev+0 copy "notification_channel_manager: ^0.0.3-dev+0" to clipboard
notification_channel_manager: ^0.0.3-dev+0 copied to clipboard

An Android plugin to Manage (CRUD) NotificationChannels and NotificationChannelGroups.

example/lib/main.dart

import 'package:flutter/material.dart';

void main() {
  runApp(const MyApp());
}

class MyApp extends StatefulWidget {
  const MyApp({Key? key}) : super(key: key);

  @override
  State<MyApp> createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: const Text('Plugin example app'),
        ),
        body: const Center(
          child: Text('Hello world'),
        ),
      ),
    );
  }
}
6
likes
0
pub points
67%
popularity

Publisher

verified publisherimed.dev

An Android plugin to Manage (CRUD) NotificationChannels and NotificationChannelGroups.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter, plugin_platform_interface

More

Packages that depend on notification_channel_manager