79792918

Date: 2025-10-17 09:04:22
Score: 1
Natty:
Report link

── Label Info ───────────────
You can do it easily with a Row — just make the left line short and the right one expanded.

Row(
  children: const [
    // Short left line
    SizedBox(
      width: 20,
      child: Divider(thickness: 1),
    ),

    SizedBox(width: 8),

    // Label text
    Text(
      'Label Info',
      style: TextStyle(fontWeight: FontWeight.bold),
    ),

    SizedBox(width: 8),

    // Long right line
    Expanded(
      child: Divider(thickness: 1),
    ),
  ],
),
Reasons:
  • Has code block (-0.5):
  • Filler text (0.5): ───────────────
  • Low reputation (1):
Posted by: Berkan Yasin Alpay