Skip to content

Instantly share code, notes, and snippets.

@webianks
Created August 12, 2019 08:51
Show Gist options
  • Save webianks/25ffcf2fca1b1c5a5428e1920473d2c2 to your computer and use it in GitHub Desktop.
Save webianks/25ffcf2fca1b1c5a5428e1920473d2c2 to your computer and use it in GitHub Desktop.
ListView.builder(
shrinkWrap: true,
padding: EdgeInsets.all(8.0),
itemCount: _filteredChoices.length,
itemBuilder: (BuildContext context, int index) {
return HelperWidgets.getAlertChoiceItem(
this, _filteredChoices[index], index, _selectedId);
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment