Default password (dev)
This commit is contained in:
parent
d290135ef9
commit
e898ac5496
@ -28,8 +28,8 @@ class LoginScreen extends StatefulWidget {
|
|||||||
|
|
||||||
class _LoginScreenState extends State<LoginScreen> {
|
class _LoginScreenState extends State<LoginScreen> {
|
||||||
String email; // DEV "test@email.be"
|
String email; // DEV "test@email.be"
|
||||||
String password ; // DEV = "kljqsdkljqsd"
|
String password; // DEV = "kljqsdkljqsd"
|
||||||
String host ; // DEV = "http://192.168.31.96"
|
String host; // DEV = "http://192.168.31.96"
|
||||||
Client clientAPI;
|
Client clientAPI;
|
||||||
bool isLoading = false;
|
bool isLoading = false;
|
||||||
bool isRememberMe = false;
|
bool isRememberMe = false;
|
||||||
@ -38,8 +38,8 @@ class _LoginScreenState extends State<LoginScreen> {
|
|||||||
print("try auth.. ");
|
print("try auth.. ");
|
||||||
|
|
||||||
/*this.host = "http://localhost:5000";
|
/*this.host = "http://localhost:5000";
|
||||||
this.email = "fs";
|
this.email = "test@email.be";
|
||||||
this.password = "fs";*/
|
this.password = "kljqsdkljqsd";*/
|
||||||
|
|
||||||
clientAPI = Client(this.host);
|
clientAPI = Client(this.host);
|
||||||
|
|
||||||
@ -116,9 +116,9 @@ class _LoginScreenState extends State<LoginScreen> {
|
|||||||
@override
|
@override
|
||||||
void initState() {
|
void initState() {
|
||||||
this.isRememberMe = widget.session.rememberMe;
|
this.isRememberMe = widget.session.rememberMe;
|
||||||
this.host = widget.session.host;
|
this.host = "http://192.168.31.140:8089"; //widget.session.host;
|
||||||
this.email = widget.session.email;
|
this.email = "test@email.be"; //widget.session.email;
|
||||||
this.password = widget.session.password;
|
this.password = "kljqsdkljqsd"; //widget.session.password;
|
||||||
super.initState();
|
super.initState();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user