material-components / material-components-flutter-codelabs

Codelabs for Material Components for Flutter
212 stars 244 forks source link

difference between actual code and codelab code #298

Open minchanpark opened 5 months ago

minchanpark commented 5 months ago

// 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),"