I have a surprising error from nowhere and I don't know how to solve it. It needs an identifier and ':'. How can I solve it?
Container(
padding: EdgeInsets.only(top: 35.0, left: 20.0, right: 20.0),
child:( _futureUser == null)
? Column(
children: <Widget>[...]
)//column
)//Here I have an error //Container

You have to specify the else expression by adding the :
Try this :
Container(
padding: EdgeInsets.only(top: 35.0, left: 20.0, right: 20.0),
child:( _futureUser == null)? Column(children: <Widget>[...]):Container()
),
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With