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

retracted

A Flutter package that provides easy controls for adjusting volume and toggling the flashlight on both Android and iOS devices. Ideal for creating multimedia applications.

volume_flash_plugin #

  A Flutter package for volume control and flashlight toggle.
  This package provides easy-to-use widgets for adjusting volume and toggling
  the flashlight on both Android and iOS devices. It includes customizable buttons
  for increasing and decreasing volume, as well as a button for toggling the flashlight.
  The [AudioTesting] widget allows developers to easily integrate volume control
  and flashlight toggling functionality into their Flutter applications. 

volume_flash_plugin, volume_flash_plugin.VolumeFlashPlugin, volume_flash_plugin.VolumeFlashPlugin.VolumeFlashPlugin, volume_flash_plugin.VolumeFlashPlugin.alignment, volume_flash_plugin.VolumeFlashPlugin.buttonBackgroundColor. Example:

class AudioFlashManager extends StatelessWidget {
  const AudioFlashManager({super.key});

  @override
  Widget build(BuildContext context) {
    return AudioTesting(
      showIncreaseVolumeButton: true,
      showDecreaseVolumeButton: true,
      showFlashlightButton: true,
      flashlightButtonText: "Flash Light",
      decreaseVolumeButtonText: "Decrease Volume",
      increaseVolumeButtonText: "Increase Volume",
      shape: RoundedRectangleBorder(
        borderRadius: BorderRadius.circular(12),
      ),
      buttonWidth: 200,
      buttonBackgroundColor: Colors.red,
    );
  }
}
For more information, see the full documentation at:
[https://github.com/shahzaibNiazi/audio_flash_manager/tree/master](https://github.com/shahzaibNiazi/audio_flash_manager/tree/master)

See also:

- [AudioTesting], a widget for controlling volume and flashlight.

import 'package:flutter/material.dart';

7
likes
0
points
6
downloads

Publisher

unverified uploader

Weekly Downloads

A Flutter package that provides easy controls for adjusting volume and toggling the flashlight on both Android and iOS devices. Ideal for creating multimedia applications.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter, plugin_platform_interface

More

Packages that depend on volume_flash_plugin

Packages that implement volume_flash_plugin