When I input TextButton inside either in Row or any Widget it's show error
The method 'TextButton' isn't defined for the type '_LoginScreenState'. Try correcting the name to the name of an existing method, or defining a method named 'TextButton'.dartundefined_method such this :
Row(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
Text('don \'t registered ? '),
TextButton(child: Text('Register'),
],
) //Row
Did flutter update it to another widget?