简体   繁体   中英

how read list inside list on dart(FLUTTER)

final List _icons = [ [ 'IDENTITY', FontAwesomeIcons.camera, ], [ 'SPECIES', FontAwesomeIcons.tree, ], [ 'ARTICLES', FontAwesomeIcons.bookOpen, ], ];

You can try

_icons[0][1] //FontAwesomeIcons.camera

but it seems like you can use a map instead of a list

final map _icons = { 'IDENTITY' : FontAwesomeIcons.camera, 'SPECIES': FontAwesomeIcons.tree, 'ARTICLES' : FontAwesomeIcons.bookOpen};
_icons['IDENTITY']; //FontAwesomeIcons.camera

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM