material-components-flutter-codelabs icon indicating copy to clipboard operation
material-components-flutter-codelabs copied to clipboard

In the login.dart, there is a typo

Open hyukjin0419 opened this issue 1 year ago • 0 comments

Maybe that code should be right here. It is correct in github, but not in the code that presented in this -> https://codelabs.developers.google.com/codelabs/mdc-101-flutter#3

TextField( decoration: const InputDecoration( filled: true, labelText: 'Username', ), ), // spacer

Here the height should be 12.0, not 120.0

const SizedBox**(height: 120.0),** // [Password] TextField( decoration: const InputDecoration( filled: true, labelText: 'Password', ), obscureText: true, ),

hyukjin0419 avatar Mar 25 '24 08:03 hyukjin0419