问题标签 [flutter-text]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
flutter - 在颤动中设置TextStyle
如何将文本样式设置为headline1
或body1
喜欢它在Flutter 1.17 公告文章的“Material Text Scale: Modernizing Flutter Text Theming”部分中的描述
flutter - RenderFlex issue with Text widget nested in Row in Flutter
I am using the below widget in a list view builder to list the array index wise, which is working alright, but when the text is overflowed as shown in the screenshot attached, the code below is implemented for the same, how should I rectify it?
flutter - 如何在颤动中更改验证器文本的颜色?
我在颤振应用程序中有密码文本字段,它有一个与之关联的验证器,它工作正常。下面是相同的代码
您可以在上面看到整个代码。我对此工作代码有疑问,即我无法更改密码验证器的文本颜色,我的意思是当用户按下提交按钮并且密码字段的长度不够大时。我应该如何更改相同的颜色?
android - 为 Flutter 中的多行文本输入中的每一行添加前缀?
我想知道是否有办法在 Flutter 的多行文本输入中为每一行添加前缀(如“-”)。
例如:
你好
世界!
会成为:
-你好
-世界!
这是我的代码:
flutter - Flutter - 如果 Text() 太长,则让其滑动
所以基本上我想做一个小部件来检查有多少可用空间,如果没有足够的空间等待几秒钟,然后慢慢滑行并停在起始位置。这个过程应该永远重复,最好不要使用太多的性能。如果没有清楚地了解我希望小部件的行为方式,只需查看 Spotify 歌曲名称。
android - Flutter:TextField 的提示文本未在屏幕 UI 中更新
使用 phoneController.text 和 otpController.text 为各自的 textField 填充hintText。
相似地,
在按钮上单击“重置”,想要清除两个文本字段的 hitText
看起来 controller.clear 正在将 conroller.text 值重置为 empty(''),但由于hintText 的值被选择为 conroller.text,因此也应该在屏幕中更新为“empty”。但不幸的是,它没有反映在 UI 中,尽管将代码包装在 setState() 中
构建文本字段()
buildRaisedButton()
任何帮助,不胜感激......在此先感谢......