颤动中的标准输入和输出操作

Standard Input and Output operations in flutter

在flutter中使用标准i/o的方法是什么?我尝试了以下代码,但没有渲染,构建卡住了。

import 'dart:io';

void main() {
 stdout.writeln("Enter value");
 String str = stdin.readLineSync();
// user inputs value
 print(str);
}

文档说


> To read text synchronously from the command line (the program blocks
> waiting for user to type information):

String inputText = stdin.readLineSync();

但是如何正确地输入值呢?因为 flutter 运行 不允许我输入值。

实际上,您所做的并不需要您使用Flutter。您可以使用 Dart 运行 它。问题是 Flutter 用于 Android、iOS、Web 和其他此类平台的应用程序开发。它不是为您想要的此类应用程序创建的。