Default password (dev)

This commit is contained in:
Fransolet Thomas 2022-03-23 20:47:13 +01:00
parent d290135ef9
commit e898ac5496

View File

@ -38,8 +38,8 @@ class _LoginScreenState extends State<LoginScreen> {
print("try auth.. ");
/*this.host = "http://localhost:5000";
this.email = "fs";
this.password = "fs";*/
this.email = "test@email.be";
this.password = "kljqsdkljqsd";*/
clientAPI = Client(this.host);
@ -116,9 +116,9 @@ class _LoginScreenState extends State<LoginScreen> {
@override
void initState() {
this.isRememberMe = widget.session.rememberMe;
this.host = widget.session.host;
this.email = widget.session.email;
this.password = widget.session.password;
this.host = "http://192.168.31.140:8089"; //widget.session.host;
this.email = "test@email.be"; //widget.session.email;
this.password = "kljqsdkljqsd"; //widget.session.password;
super.initState();
}