flutter hook useContext 示例

flutter hook useContext example

有useContext()函数的例子吗? 我想用

AppLocalizations.of(context).someText 

在许多挂钩小部件中,我不确定是否足以在初始化时将其包装在 useEffect 函数中。

我们可以这样使用。

Widget _getAccountRegister() {
    final context = useContext();
    return Container(
      margin: const EdgeInsets.all(10),
      child: FlatButton(
        padding: const EdgeInsets.all(10),
        onPressed: () {
          NavigationUtils.push(context, routeRegister);
        },
        child: Text(Localization.of(context).signIn),
      ),
    );
  }