79593177

Date: 2025-04-25 19:13:59
Score: 0.5
Natty:
Report link

it seams your divider has no width, you can add it to the Container:

SizedBox(
  height: 10,
  child: Center(
    child: Container(
      margin: EdgeInsetsDirectional.only(start: 1.0, end: 1.0),
      height: 5.0,
      width: double.infinity,
      color: Colors.red,
    ),
  ),
),
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Shlomo Cardoso