Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions mdc_100_series/lib/login.dart
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ class _LoginPageState extends State<LoginPage> {
ButtonBar(
children: <Widget>[
// TODO: Add a beveled rectangular border to CANCEL (103)
FlatButton(
TextButton(
child: Text('CANCEL'),
onPressed: () {
_usernameController.clear();
Expand All @@ -70,7 +70,7 @@ class _LoginPageState extends State<LoginPage> {
),
// TODO: Add an elevation to NEXT (103)
// TODO: Add a beveled rectangular border to NEXT (103)
RaisedButton(
ElevatedButton(
child: Text('NEXT'),
onPressed: () {
Navigator.pop(context);
Expand Down