audio_flash_manager 1.0.1+1
audio_flash_manager: ^1.0.1+1 copied to clipboard
A Flutter package for volume control and flashlight toggle.
audio_flash_manager #
A new Flutter project.
Getting Started #
This project is a starting point for a Flutter application.
A few resources to get you started if this is your first Flutter project:
For help getting started with Flutter development, view the online documentation, which offers tutorials, samples, guidance on mobile development, and a full API reference.
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,
);
}
}