79675708

Date: 2025-06-23 06:20:41
Score: 0.5
Natty:
Report link

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: [
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Nishant