我是新手,我正在尝试从文本字段创建“行数计数”,例如https://www.tools4noobs.com/online_tools/count_lines/。但是,我仍然对如何计算有疑问。
能举个例子吗,我会很感激的。
答案 0 :(得分:0)
所以我发现从文本中获取行数是这个flutter-how-to-get-the-number-of-text-lines
要阅读文字,您可以使用此Handling changes to a text field
这是我使用onChanged函数所做的一个示例。您也可以使用控制器
class Home extends StatefulWidget {
@override
_HomeState createState() => _HomeState();
}
class _HomeState extends State<Home> {
num lines = 0;
@override
void initState() {
super.initState();
}
@override
Widget build(BuildContext context) {
return SafeArea(
child: Scaffold(
body: Column(
children: <Widget>[
TextField(
maxLines: null,
onChanged: (text) {
setState(() {
lines = '\n'.allMatches(text).length + 1;
});
},
),
Text(lines.toString())
],
)),
);
}
}