П
Size: a a a
v
MA
П
RV
v
S
AK
AK
v
AK
AK
AK
v
RV
SizedBox.fromSize(
size: size,
child: Card(
child: Padding(
padding: const EdgeInsets.all(4),
child: SizedBox.expand(child: icon)
)
),
);
S
SizedBox(
width: 12,
height: 20,
child: SizedBox.expand(
child: IconButton(
icon: Icon(
Icons.chevron_left,
size: 70,
),
onPressed: () {},
color: Color.fromRGBO(85, 139, 47, 1),
),
),
)
AK
RV
SizedBox(
width: 12,
height: 20,
child: SizedBox.expand(
child: IconButton(
icon: Icon(
Icons.chevron_left,
size: 70,
),
onPressed: () {},
color: Color.fromRGBO(85, 139, 47, 1),
),
),
)
S