問題は次のとおりです。1行のテキストを含む.txtファイルがあり、その行をString変数に読み込む必要があります。ファイルの内容をFlutterの文字列変数に読み取る
私が見つけたメソッドのほとんどは未来または未来のいずれかを返して、これらのタイプを文字列に変換する方法はわかりません。また、私はpubspec.yamlで参照していますが、 "FileSystemExeption:ファイルを開くことができません(OSエラー:そのようなファイルやディレクトリはありません)"というメッセージが表示されるので、readAsStringSyncで何が間違っているのか分かりません。
class LessonPage extends StatelessWidget { LessonPage({this.title, this.appBarColor, this.barTitleColor, this.fileName});
final String title;
final Color appBarColor;
final Color barTitleColor;
final String fileName;
@override
Widget build(BuildContext context) {
final file = new File(this.fileName);
return new Scaffold(
appBar: new AppBar(
title: new Text(
this.title,
style: new TextStyle(color: this.barTitleColor)
),
backgroundColor: this.appBarColor,
),
body: new Center(
child: new Text(
file.readAsStringSync(),
softWrap: true,
)
),
);
あなたが探しているものはhttps://flutter.io/assets-and-images/#loading-text-assetsですか? –
pubspec.yamlの内容とファイル名も投稿できますか? –