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> {
height: 80,
),
SizedBox(
width: 200,
width: 300,
height: 50,
child: Container(
child: RaisedButton(
child: new Text('Zweite Sichtung',
child: new Text('Eingabe rückgängig machen',
style: TextStyle(
fontSize: 20,
fontWeight: FontWeight.w600,
color: Colors.white)),
color: Colors.grey,
onPressed: null))),
color: Colors.blue[900],
onPressed: () {
Navigator.pop(context);
}))),
SizedBox(
height: 20,
),
SizedBox(
width: 200,
width: 300,
height: 50,
child: Container(
child: RaisedButton(
child: new Text('Zurück',
child: new Text('Zweite Sichtung',
style: TextStyle(
fontSize: 20,
fontWeight: FontWeight.w600,
color: Colors.white)),
color: Colors.blue[900],
onPressed: () {
Navigator.pop(context);
}))),
color: Colors.grey,
onPressed: null))),
],
),
),
......
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