我已经学会了如何通过StatelessWidget使用i18n进行颤振练习, 但仍然无法通过StatefulWidget使用。
我可以简单地替换以下代码
title: new Text(S.of(context).title)
使用const字符串,例如:
title: const Text("A Test Title");
所以我认为其他所有事情都应该没事。唯一的问题是i18n无法正常工作。
某些机构能否帮助我,“如何在Flutter上通过StatefulWidget使用i18n?”
import 'dart:async';
import 'package:flutter/material.dart';
import 'package:flutter/widgets.dart';
import 'generated/i18n.dart';
void main() {
runApp(new MyApp());
}
class MyApp extends StatefulWidget {
MyApp({Key key, this.title}) : super(key: key);
final String title;
@override
_MyAppState createState() => new _MyAppState();
}
class _MyAppState extends State<MyApp> {
BuildContext c;
@override
void initState() {
super.initState();
}
@override
void dispose() {
super.dispose();
}
@override
Widget build(BuildContext context) {
var tiles = new List<Widget>();
return new MaterialApp(
home: new Scaffold(
appBar: new AppBar(
title: new Text(S.of(context).title), // Here is the problem
),
body: new Stack(
children: <Widget>[
new Container(),
new ListView(
children: tiles,
)
],
),
),
localizationsDelegates: [S.delegate],
supportedLocales: S.delegate.supportedLocales,
localeResolutionCallback: S.delegate.resolution(
fallback: new Locale("en", "")
),
);
}
}
答案 0 :(得分:2)
您使用的context
没有MaterialApp
作为父级。相反,它有一个MaterialApp
作为孩子。
问题是,您尝试使用S
获取的S.of(context)
实例存储在MaterialApp
内部。因此是错误。
您可以改用其他context
,其中context
的父母中有MaterialApp
。
最简单的方法是将应用程序的一部分包装到Builder
中。
类似的东西:
return MaterialApp(
home: Builder(
builder: (context) {
const title = S.of(context).title; // works now because the context used has a MaterialApp inside its parents
return Scaffold(...);
}
)
)