Skip to content

Instantly share code, notes, and snippets.

@alyssoncm
Created September 10, 2020 23:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save alyssoncm/f961c67022c4ffeb94b28a3b81a3188d to your computer and use it in GitHub Desktop.
Save alyssoncm/f961c67022c4ffeb94b28a3b81a3188d to your computer and use it in GitHub Desktop.
return ListView.builder(
itemCount: result.data["languages"]["edges"].length,
itemBuilder: (BuildContext context, int index){
return ListTile(
title: Text(result.data["languages"]["edges"][index]["node"]['name']),
trailing: Text(result.data["languages"]["edges"][index]["node"]['saveFormat']),
);
},
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment