当前位置:网站首页>Flutter input field maxlines dynamic change

Flutter input field maxlines dynamic change

2022-06-22 07:19:00 Small orange table

flutter TextFormField maxLines max
Enter the box height ( Row number ) There is no limit on the , Or restricted by parent component

TextField(maxLines: null)

Enter the box height ( Row number ) Fix 2 That's ok

TextField(maxLines: 2)

Enter the box height ( Row number ) Minimum display 2 Line height , Maximum display 4 That's ok

TextField(minLines: 2, maxLines: 4)

Reference material :
https://api.flutter.dev/flutter/material/TextField/maxLines.html

原网站

版权声明
本文为[Small orange table]所创,转载请带上原文链接,感谢
https://yzsam.com/2022/02/202202220537295975.html