Skip to content

Commit

Permalink
Merge branch 'master' of github.com:ryanheise/just_audio
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanheise committed Nov 17, 2020
2 parents aad7674 + 1cba57f commit 15c77fd
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions just_audio/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -138,11 +138,11 @@ Listening to state changes:
player.playerStateStream.listen((state) {
if (state.playing) ... else ...
switch (state.processingState) {
case AudioPlaybackState.none: ...
case AudioPlaybackState.loading: ...
case AudioPlaybackState.buffering: ...
case AudioPlaybackState.ready: ...
case AudioPlaybackState.completed: ...
case ProcessingState.none: ...
case ProcessingState.loading: ...
case ProcessingState.buffering: ...
case ProcessingState.ready: ...
case ProcessingState.completed: ...
}
});
Expand Down

0 comments on commit 15c77fd

Please sign in to comment.