Skip to content

Instantly share code, notes, and snippets.

@vasilich6107
Created January 13, 2020 21:19
Show Gist options
  • Save vasilich6107/26192b054aa50f252cd5d57bbfd10076 to your computer and use it in GitHub Desktop.
Save vasilich6107/26192b054aa50f252cd5d57bbfd10076 to your computer and use it in GitHub Desktop.
final allCompanies = CompaniesData.fromJson(result.data).allCompanies;
return ListView.builder(
itemBuilder: (_, index) {
return ListTile(
leading: Icon(Icons.card_travel),
title: Text(allCompanies[index].name),
subtitle: Text(allCompanies[index].industry),
);
},
itemCount: allCompanies.length,
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment