flutter_volume_slider 1.0.6 copy "flutter_volume_slider: ^1.0.6" to clipboard
flutter_volume_slider: ^1.0.6 copied to clipboard

A flutter widget to control volume in each Android & iOS natively. Just add the dependency and call FlutterVolumeSlider() widget where you want.

FlutterVolumeSlider #

pub package

A flutter widget to control volume in each Android & iOS.

How to use : #

Just add FlutterVolumeSlider Widget anywhere you want to control volume.

Works Properly on Android and iOS.

Display Horizontally :

...

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: const Text('Plugin example app'),
        ),
        body: Center(
          child: FlutterVolumeSlider(
            display: Display.HORIZONTAL,
            sliderActiveColor: Colors.blue,
            sliderInActiveColor: Colors.grey,
          ),
        ),
      ),
    );
  }

Display Vertically :

...

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: const Text('Plugin example app'),
        ),
        body: Center(
          child: FlutterVolumeSlider(
            display: Display.VERTICAL,
            sliderActiveColor: Colors.blue,
            sliderInActiveColor: Colors.grey,
          ),
        ),
      ),
    );
  }

8
likes
40
pub points
41%
popularity

Publisher

unverified uploader

A flutter widget to control volume in each Android & iOS natively. Just add the dependency and call FlutterVolumeSlider() widget where you want.

Repository (GitHub)
View/report issues

License

MIT (LICENSE)

Dependencies

flutter, provider

More

Packages that depend on flutter_volume_slider