From fb44b67a0670be220a59e9f9c0517c7e3072c2c6 Mon Sep 17 00:00:00 2001 From: Ryan Heise Date: Tue, 29 Dec 2020 23:49:33 +1100 Subject: [PATCH] Remove event stream point from migration notes. --- just_audio/README.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/just_audio/README.md b/just_audio/README.md index 13514ad..2997661 100644 --- a/just_audio/README.md +++ b/just_audio/README.md @@ -34,8 +34,6 @@ Please consider reporting any bugs you encounter [here](https://github.com/ryanh * Replace `await player.load(source);` by `await player.setAudioSource(source);` * Replace `await stop();` by `await player.pause(); await player.seek(Duration.zero);` -Also beware that `playbackEventStream` will now emit events strictly when the fields in `PlaybackEvent` change. In 0.5.x this often (by chance) coincided with `playing` state changes. Apps that depended on this behaviour will break in 0.6.x and should explicitly listen for `playing` state changes via `playingStream` or `playerStateStream`. - ## Example ![just_audio](https://user-images.githubusercontent.com/19899190/89558581-bf369080-d857-11ea-9376-3a5055284bab.png)