I'm trying to get third party widgets(widgets on t...
# compose
t
I'm trying to get third party widgets(widgets on the user device) to display in my compose app as a list, which I got to work but the issue I'm having is with updating widgets with control actions like music player pause/play, where each action updates the widgets view, anytime I click the control actions I expect the widget to update its view but nothing happen e.g the music player plays/pause music when the action is clicked but widgets doesnt update pause/play icon I've tried overriding the
updateAppWidget()
method from the custom widgets host view I'm using to create the host view for each widgets and setting a key for each widgets in the list that updates via a callback from the widget hostview, that didn't work, update gets delivered just once when the apphostview is being created. Does anyone know how I can work around this? link to gist