如何在Redux存储中存储变量以允许其他页面访问它?
我试图将res
变量存储在Redux商店中,以便我可以从任何其他页面访问它。这就是我到目前为止所做的:
码:
submit(String email, String password) async {
print(email);
print(password);
var data = {
'email': email,
'password': password
};
http.Response response = await http.post(
Uri.encodeFull("http://v2mobile.dico.se/api/login"),
body: data,
headers: {
'Accept': 'application/json',
});
var res = json.decode(response.body);
print(res);
}