flutter_notification_channel 1.0.0 copy "flutter_notification_channel: ^1.0.0" to clipboard
flutter_notification_channel: ^1.0.0 copied to clipboard

outdated

A plugin for setting up notification channels on android

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:flutter_notification_channel/flutter_notification_channel.dart';
import 'package:flutter_notification_channel/notification_importance.dart';

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

class MyApp extends StatefulWidget {
  @override
  _MyAppState createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
  @override
  void initState() {
    super.initState();
  }

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: const Text('Register Channel'),
        ),
        body: Center(
          child: Column(
            children: [
              FlatButton(
                onPressed: () async {
                  print('start registering');
                  var result = await FlutterNotificationChannel
                      .registerNotificationChannel(
                          description: 'My test channel',
                          id: 'com.softmaestri.testchannel',
                          importance: NotificationImportance.IMPORTANCE_HIGH,
                          name: 'Flutter channel test name');
                  print('Result: $result');
                },
                child: Text('Register channel'),
              )
            ],
          ),
        ),
      ),
    );
  }
}
27
likes
0
pub points
95%
popularity

Publisher

verified publishersoftmaestri.com

A plugin for setting up notification channels on android

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on flutter_notification_channel