Removed cardview overlay where possible

This commit is contained in:
CappielloAntonio 2021-04-16 10:08:31 +02:00
parent 277a07ef92
commit c190e8777e
21 changed files with 312 additions and 363 deletions

View file

@ -49,4 +49,8 @@ public class PlayerBottomSheetViewModel extends AndroidViewModel {
public void setSong(Song song) {
this.song = song;
}
public void removeSong(int position) {
queueRepository.deleteByPosition(position);
}
}