flutter

Flutter Row with elements at ends

Row(
    children: [
      Container(height: 100, width: 100, color: Colors.red),
      Spacer(),
      Container(height: 100, width: 100, color: Colors.green)
    ],
  )
Was this helpful?