【发布时间】:2020-04-27 00:33:51
【问题描述】:
我是 Flutter 的新手,在 Flutter Web 应用程序中工作,我的要求是创建和下载一个文本文件。如下所示。
void getData() {
List<int> bytes = utf8.encode('this is the text file');
print(bytes); // Need to download this with txt file.
}
谁能帮我实现这个目标
【问题讨论】:
标签: flutter dart flutter-web