remove unwanted prints
This commit is contained in:
parent
a7d150def2
commit
115c466302
1 changed files with 2 additions and 2 deletions
|
|
@ -61,10 +61,10 @@ class _SignInState extends State<SignIn> {
|
||||||
);
|
);
|
||||||
//print(response.body[])
|
//print(response.body[])
|
||||||
if (response.statusCode == 200) {
|
if (response.statusCode == 200) {
|
||||||
print(response.body);
|
//print(response.body);
|
||||||
var userSignedin = jsonDecode(response.body);
|
var userSignedin = jsonDecode(response.body);
|
||||||
if (userSignedin["status"] == "OK") {
|
if (userSignedin["status"] == "OK") {
|
||||||
print("here");
|
//print("here");
|
||||||
setState(() {
|
setState(() {
|
||||||
successfulSignIn = true;
|
successfulSignIn = true;
|
||||||
});
|
});
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue