Version 0.0.2

This commit is contained in:
Ryan Heise 2019-12-01 02:52:54 +11:00
parent 32f1b900ae
commit a50daad9e1
4 changed files with 21 additions and 14 deletions

View file

@ -9,20 +9,20 @@ A Flutter plugin to play audio from streams, files and assets. This plugin can b
* Control audio playback via standard operations: play, pause, stop, setVolume, seek.
* Compatible with [audio_service](https://pub.dev/packages/audio_service) to support full background playback, queue management, and controlling playback from the lock screen, notifications and headset buttons.
The initial release is for Android. The next priority is iOS.
This plugin has been tested on Android, and is being made available for testing on iOS. Please consider reporting any bugs you encounter [here](https://github.com/ryanheise/just_audio/issues) or submitting pull requests [here](https://github.com/ryanheise/just_audio/pulls).
## Example
```dart
final player = AudioPlayer();
await player.setUrl('https://foo.com/bar.mp3');
await player.play();
player.play();
await player.pause();
await player.play(untilPosition: Duration(minutes: 1));
await player.stop()
await player.setUrl('https://foo.com/baz.mp3');
await player.seek(Duration(minutes: 5));
await player.play();
player.play();
await player.stop();
await player.dispose();
```