I'm doing the typical todo list project to learn flutter and wanted to have a go at making a home screen widget for android.
I've not done much work on android but I don't see a way to update a listview in the widget? It seems straightforward enough if I just want to update a text box, but more complicated layouts seem unsupported.
Is this the case or am I missing something?
You can use
ListView.builder()to prepare theListViewand just return anycustomWidgetfromitemBuilder.