aliyazdi75 / flutter_media_notification

Flutter Media Notification helps you to show your media notification and control streaming media beyond your flutter app. https://pub.dev/packages/flutter_media_notification

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

(Not maintain anymor. You can use audio_service instead.)

Flutter Media Notification

Pub Package GitHub Issues GitHub Forks GitHub Stars GitHub License

Flutter Media Notification helps you to show your media notification and control streaming media beyond your flutter app.

This library is open source, stable and AndroidX supported. Development happens on GitHub/flutter_media_notification. Feel free to report issues or create a pull-request there. An example within a music player shares on GitHub/flutter_music. If you found this project helpful or you learned something from the source code and want to thank me, consider donating me Here.

The package is hosted on dart packages.

Tutorial

Installation

Follow the installation instructions on dart packages.

Import the package into your Dart code using:

import 'package:flutter_media_notification/flutter_media_notification.dart';

Showing and Hiding

To show notification when your music is playing use the function:

MediaNotification.showNotification(title: 'Title', author: 'Song author');

To show notification when your music is pausing use the function:

MediaNotification.showNotification(title: 'Title', author: 'Song author', isPlaying : false);

To hide notification use the function:

MediaNotification.hideNotification();

Setting a Listener

To setting a listener for an action use these setListener in initState() of main.dart to control your media beyond your app:

  • set listener for play action:
    MediaNotification.setListener('play', () {
      setState();
    });
  • set listener for pause action:
    MediaNotification.setListener('pause', () {
      setState();
    });
  • set listener for next action:
    MediaNotification.setListener('next', () {
      setState();
    });
    • set listener for previous action:
    MediaNotification.setListener('prev', () {
      setState();
    });
  • set listener for selecting on notification:
    MediaNotification.setListener('select', () {
      setState();
    });

License

The MIT License, see LICENSE.

About

Flutter Media Notification helps you to show your media notification and control streaming media beyond your flutter app. https://pub.dev/packages/flutter_media_notification

License:MIT License


Languages

Language:Java 59.6%Language:Dart 25.3%Language:Swift 5.9%Language:Ruby 4.0%Language:Objective-C 2.8%Language:Shell 2.5%