Open michelemendel opened 11 months ago
The results in the list have no padding. Is there a way to add this?
I tried to implement listBuilder - which show the results with some padding - but didn't know how to add the data to the bottom bar when clicking on it.
listBuilder: (context, p) { return ListView.builder( shrinkWrap: true, itemCount: p?.length, itemBuilder: (context, i) { return ListTile( title: Text('${p?[i].placeId}: ${p?[i].description}'), onTap: () { // What to do here? }, ); }); },```
Same issue @rvndsngwn
The results in the list have no padding. Is there a way to add this?
I tried to implement listBuilder - which show the results with some padding - but didn't know how to add the data to the bottom bar when clicking on it.