如何在Flutter的Redux Store中存储变量?

时间:2019-03-26 09:01:23

标签: redux dart flutter store

问题:

如何在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);
}

1 个答案:

答案 0 :(得分:0)

由于您不知道redux的工作原理,因此我不会给您任何答复,但我建议您学习redux生态系统,以下是一些链接的开头:

flutter-redux

示例:

counter

shopping-list-app