Remove Align as it is not needed here and modify the mainAxisAlignment of the Row from end to spaceBetween:
from:
Spacer(),
Row(
mainAxisAlignment: MainAxisAlignment.end,
children: [
to:
Spacer(),
Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [