Created
April 11, 2019 09:53
-
-
Save gladimdim/592b9fda520f9a9a58407c14e2695941 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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