audioplayerui 0.0.6 copy "audioplayerui: ^0.0.6" to clipboard
audioplayerui: ^0.0.6 copied to clipboard

outdated

Flutter package which provides audio player ui for audioplayers package.

audioplayerui #

Audio Player UI Plugin.

Features #

  • Play (url / local file)
  • Resume / pause

Installation #

First, add audioplayerui as a dependency in your pubspec.yaml file.

Then add the AudioPlayerView like this

  AudioPlayerController audioPlayerController = AudioPlayerController();

  @override
  Widget build(BuildContext context) {
    return AudioPlayerView(
              audioPlayerController: audioPlayerController,
              trackUrl: "",
              isLocal: false,
              trackTitle: "",
              trackSubtitle: "",
              imageUrl: ""
              );
  }

Available methods for AudioPlayerController #

Method description parameters notes
play Plays a audio file from an remote link url
playLocal Plays a local audio file path
pause Pause's the currently playing track
resume Resumes the currently paused track
stop Stops the playback of the current track

Example #

Demonstrates how to use the audioplayerui plugin.

See the example documentation for more information.

Contributing #

Feel free to contribute by opening issues and/or pull requests. Your feedback is very welcome!

Changelog #

See CHANGELOG.md.

License #

MIT License

Copyright (c) [2019] [Joran Dob] Copyright (c) [2019] [QREATE]

7
likes
0
pub points
0%
popularity

Publisher

verified publisherqreate.io

Flutter package which provides audio player ui for audioplayers package.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

audioplayers, flutter

More

Packages that depend on audioplayerui