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

difference between actual code and codelab code

Open minchanpark opened this issue 1 year ago • 0 comments

// TODO: Add TextField widgets (101) // [Name] TextField( decoration: const InputDecoration( filled: true, labelText: 'Username', ), ), // spacer const SizedBox(height: 120.0), // [Password] TextField( decoration: const InputDecoration( filled: true, labelText: 'Password', ), obscureText: true, ),

it is different between actual code and codelab code. "const SizedBox(height: 120.0),"-->"const SizedBox(height: 12.0),"

minchanpark avatar Mar 25 '24 01:03 minchanpark