Posts by Vitor • 116 points
1 post
-
0
votes2
answers928
viewsA: FLUTTER ERROR - The method '[]' was called on null
The error occurs because when the widgets tree is done, it tries to build: AssetImage('assets/img/' + _item[0].imagens) However _item is not initialized, that is, null. So it gives error. You are…