Add option to order and delete elements from queue by dragging and swiping

This commit is contained in:
CappielloAntonio 2021-04-16 18:00:19 +02:00
parent 49c3d60ed1
commit a2770daaa8
9 changed files with 70 additions and 111 deletions

View file

@ -50,6 +50,10 @@ public class PlayerBottomSheetViewModel extends AndroidViewModel {
this.song = song;
}
public void orderSongAfterSwap(List<Song> songs) {
queueRepository.insertAllAndStartNew(songs);
}
public void removeSong(int position) {
queueRepository.deleteByPosition(position);
}