Вы можете сделать то же самое в флаттере, используя Расширенное в строке.
Row(
children: <Widget>[
Expanded(
flex: 3,
child: Text(
"Name",
style: TextStyle(color: Colors.white),
),
),
Expanded(
flex: 7,
child: TextFormField(
initialValue: "Enter text",
style: TextStyle(color: Colors.white),
),
)
],
)