createArrows method
Implementation
List<Widget> createArrows() {
return [
Positioned(
top: 16.0,
left: 0.0,
right: 0.0,
child: Icon(
Icons.arrow_upward,
color: iconsColor,
),
),
Positioned(
top: 0.0,
bottom: 0.0,
left: 16.0,
child: Icon(
Icons.arrow_back,
color: iconsColor,
),
),
Positioned(
top: 0.0,
bottom: 0.0,
right: 16.0,
child: Icon(
Icons.arrow_forward,
color: iconsColor,
),
),
Positioned(
bottom: 16.0,
left: 0.0,
right: 0.0,
child: Icon(
Icons.arrow_downward,
color: iconsColor,
),
)
];
}