I’m building a music app in Flutter, and I’m using the flutter_carplay plugin to integrate iOS CarPlay functionality. On the CarPlay interface, there’s an "A-Z" sorting option that’s displayed on the home page screen, which is intended for alphabetical selection of collections or playlists.
However, this A-Z sorting option is currently non-functional:
There’s no callback available in the plugin for handling this option. I’d like to either make the sorting functional or hide the option entirely if it can’t be used. Here’s what I’ve tried so far:
Checked the flutter_carplay documentation, but didn’t find any built-in support for alphabetical sorting callbacks. Looked into hiding this option but couldn’t find any configuration for it in the Flutter API. Question:
Does anyone know how to add a callback to the A-Z sorting option in CarPlay with flutter_carplay? If adding a callback isn’t possible, is there a way to hide this option on the CarPlay screen? Any guidance on where to modify the plugin code to add this functionality or hide the option would be greatly appreciated! Thanks!
CPListTemplate
to show the list? Can you include some screenshots or example code for better understanding?