1

是否有 useContext() 函数示例的示例?我想用

AppLocalizations.of(context).someText 

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

4

1 回答 1

2

我们可以这样使用。

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),
      ),
    );
  }
于 2021-01-02T08:14:22.803 回答