79478033

Date: 2025-03-01 18:03:47
Score: 1
Natty:
Report link

managed to fix it in a bit of a hacky way by adding a custom indentation and setting the default indentation to zero:

return Row(
         children: [
         SizedBox(width: node.depth == null ? 0 : node.depth! * 10),
         Expanded(
             child: //Original node widget
            ),
         ],
        );
Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Yoeri van Zwol