flutter_mute 0.0.4 copy "flutter_mute: ^0.0.4" to clipboard
flutter_mute: ^0.0.4 copied to clipboard

Check/change mute mode.

flutter_mute #

A Flutter plugin to check or toggle a device ringer mode.

Features #

  1. Detect device current ringer mode;
  2. Able to toggle between Normal, Silent & Vibrate mode (Only for Android);
  3. Grant notification policy access for devices above platform version Android 7.0 (API 24).
List of modes available
Mode Description
RingerMode.Normal Device normal mode
RingerMode.Silent Device silent mode
RingerMode.Vibrate Device vibrate mode

Example #

To get the device's current sound mode:

import 'package:flutter_mute/flutter_mute.dart';

RingerMode ringerMode = await FlutterMute.getRingerMode;
copied to clipboard

To change the device ringer mode:

import 'package:flutter_mute/flutter_mute.dart';

await FlutterMute.setSoundMode(RingerMode.Silent); // Ignore for Android < 7.0
copied to clipboard

For Android 7.0 and above

For devices with Android 7.0 and above, it is required for the user to grant notification policy access to set their device's sound mode.

To check if the user has granted the permissions and prompt for approval

import 'package:flutter_mute/flutter_mute.dart';

bool isAccessGranted = await FlutterMute.isNotificationPolicyAccessGranted;

if (!isAccessGranted) {
  // Opens the notification settings to grant the access.
  await FlutterMute.openNotificationPolicySettings();
}
copied to clipboard

Note #

IOS Simulator always return normal mode.

12
likes
140
points
1.09k
downloads

Publisher

unverified uploader

Weekly Downloads

2024.10.02 - 2025.04.16

Check/change mute mode.

Repository (GitHub)

Documentation

API reference

License

GPL-3.0 (license)

Dependencies

flutter

More

Packages that depend on flutter_mute