Skip to content

Instantly share code, notes, and snippets.

@becek2n
Created May 8, 2020 16:23
Show Gist options
  • Save becek2n/ba6a5e863839d031851e908c3ff84786 to your computer and use it in GitHub Desktop.
Save becek2n/ba6a5e863839d031851e908c3ff84786 to your computer and use it in GitHub Desktop.
Widget getMainListViewUI() {
return ListView.builder(
shrinkWrap: true,
padding: EdgeInsets.only(
bottom: 62 + MediaQuery.of(context).padding.bottom,
),
itemCount: listViews.length,
scrollDirection: Axis.vertical,
itemBuilder: (context, index) {
return listViews[index];
},
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment