I have to put two TextFormField near but when I create Row and in childrens put the two TextFormField, the container that contain the Stepper disappear. How can I do it?
Code that make Container disappear
Widget build(BuildContext context) {
return Form(
key: global.formStateKeys[formIndex],
child: Column(
children: <Widget> [
Row(
children: <Widget> [
TextFormField(),
TextFormField()
],
)
]
)
)
}