5

我正在尝试为我的应用程序实现自定义注销解决方案,无论用户当前在哪里,一旦Logout button单击,应用程序将导航回Login page.

我的想法是,我不会在每个组件上监听状态变化,而是在主组件 -> 上设置一个监听器MyApp

为了简单起见,我已将项目精简到最低限度。这是我的 Profile 类的样子:

class Profile with ChangeNotifier {
  bool _isAuthentificated = false;
  bool get isAuthentificated => _isAuthentificated;
  set isAuthentificated(bool newVal) {
    _isAuthentificated = newVal;
    notifyListeners();
  }
}

现在,在 下Main,我已将此提供程序注册如下:

void main() => runApp(
      MultiProvider(
        providers: [
          ChangeNotifierProvider(
            create: (_) => Profile(),
          )
        ],
        child: MyApp(),
      ),
    );

最后是MyApp组件:

class MyApp extends StatelessWidget {
  // This widget is the root of your application.
  @override
  Widget build(BuildContext context) {
    return Consumer<Profile>(
      builder: (context, profile, _) {
        return MaterialApp(
          title: 'Flutter Demo',
          theme: ThemeData(
            brightness: Brightness.light,
            primaryColor: Color.fromARGB(255, 0, 121, 107),
            accentColor: Color.fromARGB(255, 255, 87, 34),
          ),
          home: buildBasePage(context, profile),
        );
      },
    );
  }

  Widget buildBasePage(BuildContext context, Profile currentProfile) {
    return !currentProfile.isAuthentificated
        ? LoginComponent()
        : MyHomePage(title: 'Flutter Demo Home Page test');
  }
}

我的想法是,由于MyApp组件是master,我应该能够创建一个消费者,如果当前用户已通过身份验证,它将被通知,并会做出相应的响应。

发生的事情是,当我在例如MyHomePage组件中并单击Logout()如下所示的方法时:

  void _logout() {
    Provider.of<Profile>(context, listen: false).isAuthentificated = false;
  }

我期望在更改属性后,初始MyApp组件会做出反应并生成LoginPage;事实并非如此。我已经尝试从相同的结果更改ConsumerProvider.of<Profile>(context, listen: false)尚未。

为了使这个概念起作用,我需要做什么?这样做是否正确?

我的意思是我肯定可以Profile以某种方式更新我的课程,我添加以下方法:

  logout(BuildContext context) {
    _isAuthentificated = false;

    Navigator.push(
        context, MaterialPageRoute(builder: (context) => LoginComponent()));
  }

然后简单地调用Provider.of<Profile>(context, listen: false).logout(),但是我认为 Provider 包是为此设计的......或者我错过了什么?

任何有关此事的帮助将不胜感激。

4

2 回答 2

4

我不知道为什么它不适合你。这是我根据您的描述构建的完整示例。有用!

import 'package:flutter/material.dart';
import 'package:provider/provider.dart';

class Profile with ChangeNotifier {
  bool _isAuthentificated = false;

  bool get isAuthentificated {
    return this._isAuthentificated;
  }

  set isAuthentificated(bool newVal) {
    this._isAuthentificated = newVal;
    this.notifyListeners();
  }
}

void main() {
  return runApp(
    MultiProvider(
      providers: [
        ChangeNotifierProvider<Profile>(
          create: (final BuildContext context) {
            return Profile();
          },
        )
      ],
      child: MyApp(),
    ),
  );
}

class MyApp extends StatelessWidget {
  @override
  Widget build(final BuildContext context) {
    return Consumer<Profile>(
      builder: (final BuildContext context, final Profile profile, final Widget child) {
        return MaterialApp(
          title: 'Flutter Demo',
          theme: ThemeData(primarySwatch: Colors.blue),
          home: profile.isAuthentificated ? MyHomePage() : MyLoginPage(),
        );
      },
    );
  }
}

class MyHomePage extends StatelessWidget {
  @override
  Widget build(final BuildContext context) {
    return Scaffold(
      appBar: AppBar(title: const Text("Home [Auth Protected]")),
      body: Center(
        child: RaisedButton(
          child: const Text("Logout"),
          onPressed: () {
            final Profile profile = Provider.of<Profile>(context, listen: false);
            profile.isAuthentificated = false;
          },
        ),
      ),
    );
  }
}

class MyLoginPage extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(title: const Text("Login")),
      body: Center(
        child: RaisedButton(
          child: const Text("Login"),
          onPressed: () {
            final Profile profile = Provider.of<Profile>(context, listen: false);
            profile.isAuthentificated = true;
          },
        ),
      ),
    );
  }
}
于 2020-02-07T22:27:28.750 回答
2

您不需要通过listen:false,只需调用

Provider.of<Profile>(context).logout()

所以你的 Profile 类看起来像

      class Profile with ChangeNotifier {
  bool isAuthentificated = false;


  logout() {
    isAuthentificated = false;
    notifyListeners();
  }
}
于 2020-02-07T09:19:04.627 回答