audio_service icon indicating copy to clipboard operation
audio_service copied to clipboard

Play and Show NowPlaying MediaItem when clicked on Android Auto

Open bensalcie opened this issue 2 years ago • 16 comments

Adding this snippet enables you to play MediaItems on Android Auto, and shows the correct Playing information on click.

    @override
    Future<void> playFromMediaId(String mediaId,
        [Map<String, dynamic>? extras]) async {
      //Get the index of the item on the queue
  
      var index = queue.value.indexWhere((element) => element.id == mediaId);
  
      // Skip to the item to start playing.
      await skipToQueueItem(index);
    }
image

bensalcie avatar Jan 18 '23 12:01 bensalcie