To display the network image in a list leading row space, we need to actually specify a circle avatar
Widget _buildRow(int i) {
return new Padding(
padding: const EdgeInsets.all(16.0),
child: new ListTile(
title: new Text("${_members[i].login}", style: _biggerFont),
leading: new CircleAvatar(
backgroundColor: Colors.green,
backgroundImage: new NetworkImage(_members[i].avatarUrl)
),
)
);
}
References:
https://www.raywenderlich.com/116-getting-started-with-flutter
No comments:
Post a Comment