是否有 useContext() 函数示例的示例?我想用
AppLocalizations.of(context).someText
在许多钩子小部件中,我不确定它是否足以在初始化时将其包装在 useEffect 函数中。
是否有 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),
),
);
}