streaming tracks!

also managing the queue for playing from album view
This commit is contained in:
austinried
2021-06-29 15:48:21 +09:00
parent 666e1e3e69
commit 9e2740c84e
10 changed files with 278 additions and 96 deletions

View File

@@ -17,5 +17,7 @@ module.exports = async function() {
TrackPlayer.play();
}
});
TrackPlayer.addEventListener('remote-next', () => TrackPlayer.skipToNext().catch(() => {}));
TrackPlayer.addEventListener('remote-previous', () => TrackPlayer.skipToPrevious().catch(() => {}));
};