Skip to content

Instantly share code, notes, and snippets.

@gladimdim
Created April 11, 2019 09:53
Show Gist options
  • Save gladimdim/592b9fda520f9a9a58407c14e2695941 to your computer and use it in GitHub Desktop.
Save gladimdim/592b9fda520f9a9a58407c14e2695941 to your computer and use it in GitHub Desktop.
Widget _buildResponderRow(List<Responder> group) {
return Container(
height: 100.0,
child: ListView.builder(
itemCount: group.length,
scrollDirection: Axis.horizontal,
itemBuilder: (context, index) {
return _buildResponderView(group[index]);
},
),
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment