이중 map

김원교·2023년 3월 13일
0
  • asmap() : index를 key로 리스트 요소들을 value로 받는다

Expanded(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: [
123,
456,
789,
]
.asMap()
.entries
.map((e) => Padding(
padding:
EdgeInsets.only(bottom: e.key == 2 ? 0 : 10),
child: Row(
children: e.value
.toString()
.split('')
.map(
(y) => Image.asset(
'asset/img/$y.png',
height: 70,
width: 50,
),
)
.toList(),
),
))
.toList()),
),

profile
지드래건 남들이 머라건 이병건

0개의 댓글