79185574

Date: 2024-11-13 15:31:11
Score: 0.5
Natty:
Report link

It might the default padding of ListView. You could try

ListView.builder(
  padding: EdgeInsets.zero,
  itemBuilder: (BuildContext context, int index) {
    return Text("answers[$index]");
  }),
)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: PurplePolyhedron