-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added default login details in login screen
- Loading branch information
1 parent
1815b2f
commit 83aa081
Showing
1 changed file
with
2 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,6 +30,8 @@ class LoginScreen extends StatelessWidget { | |
|
||
@override | ||
Widget build(BuildContext context) { | ||
usernameController.text = "[email protected]"; | ||
passwordController.text = "admin"; | ||
return Scaffold(body: Builder(builder: (BuildContext context) { | ||
return Container( | ||
padding: EdgeInsets.all(25), | ||
|