Skip to content
Snippets Groups Projects
Commit 8af65e9a authored by Thi Huyen Trang Nguyen's avatar Thi Huyen Trang Nguyen
Browse files

KAT-49: Changed button's label and ordered the buttons in lock_screen.dart

parent e69d0fc7
No related branches found
No related tags found
No related merge requests found
...@@ -90,34 +90,34 @@ class _LockScreenState extends State<LockScreen> { ...@@ -90,34 +90,34 @@ class _LockScreenState extends State<LockScreen> {
height: 80, height: 80,
), ),
SizedBox( SizedBox(
width: 200, width: 300,
height: 50, height: 50,
child: Container( child: Container(
child: RaisedButton( child: RaisedButton(
child: new Text('Zweite Sichtung', child: new Text('Eingabe rückgängig machen',
style: TextStyle( style: TextStyle(
fontSize: 20, fontSize: 20,
fontWeight: FontWeight.w600, fontWeight: FontWeight.w600,
color: Colors.white)), color: Colors.white)),
color: Colors.grey, color: Colors.blue[900],
onPressed: null))), onPressed: () {
Navigator.pop(context);
}))),
SizedBox( SizedBox(
height: 20, height: 20,
), ),
SizedBox( SizedBox(
width: 200, width: 300,
height: 50, height: 50,
child: Container( child: Container(
child: RaisedButton( child: RaisedButton(
child: new Text('Zurück', child: new Text('Zweite Sichtung',
style: TextStyle( style: TextStyle(
fontSize: 20, fontSize: 20,
fontWeight: FontWeight.w600, fontWeight: FontWeight.w600,
color: Colors.white)), color: Colors.white)),
color: Colors.blue[900], color: Colors.grey,
onPressed: () { onPressed: null))),
Navigator.pop(context);
}))),
], ],
), ),
), ),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment