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()),
),