我需要在Flutter中去掉这个文本溢出。我该怎么做?

huangapple go评论85阅读模式
英文:

i need to remove this text over flow in flutter. how can i do that?

问题

以下是您要翻译的代码部分:

  1. 我在`Column`中的`Text`小部件中遇到了错误。
  2. body: Padding(
  3. padding: const EdgeInsets.all(20),
  4. child: Column(
  5. mainAxisAlignment: MainAxisAlignment.spaceAround,
  6. children: [
  7. Row(
  8. mainAxisAlignment: MainAxisAlignment.spaceAround,
  9. children: [
  10. Column(
  11. crossAxisAlignment: CrossAxisAlignment.start,
  12. children: [
  13. Text(
  14. widget.songModel.displayNameWOExt, <------- 这里是我的文本
  15. ),
  16. Text(
  17. widget.songModel.artist.toString(),
  18. overflow: TextOverflow.fade,
  19. ),
  20. ],
  21. ),
  22. ],
  23. ),
  24. ],
  25. ),
  26. );

这是我遇到的问题

这是我需要的样子

英文:

I am facing error in the Text widget which is in Column.

  1. body: Padding(
  2. padding: const EdgeInsets.all(20),
  3. child: Column(
  4. mainAxisAlignment: MainAxisAlignment.spaceAround,
  5. children: [
  6. Row(
  7. mainAxisAlignment: MainAxisAlignment.spaceAround,
  8. children: [
  9. Column(
  10. crossAxisAlignment: CrossAxisAlignment.start,
  11. children: [
  12. Text(
  13. widget.songModel.displayNameWOExt, <------- here is my text
  14. ),
  15. Text(
  16. widget.songModel.artist.toString(),
  17. overflow: TextOverflow.fade,
  18. ),
  19. ],
  20. ),
  21. ],
  22. ), ), );

This is what happened to me

This is what i need look like

答案1

得分: 1

Expanded小部件包裹Row小部件内的Text

  1. Expanded(child: Text(/* 这里是文本*/),
英文:

Wrap the Text that is inside a Row widget with an Expanded widget:

  1. Expanded(child: Text(/* Here the text*/),

答案2

得分: 0

尝试将Text()小部件嵌套在Expanded()小部件内 扩展文档

Expanded是一个小部件,用于扩展Row、Column或Flex的子元素,以使子元素填充可用空间。

英文:

try embedding the Text() widget inside a Expanded() widget expanded documentation

Expanded is a widget that expands a child of a Row, Column, or Flex so that the child fills the available space.

答案3

得分: 0

将文本包裹在容器中,并在此之后为容器指定特定大小,然后使用 overflow: TextOverflow.fade 或 "overflow" 的任何其他属性,因为这些属性只在你为文本字段指定大小时才有效,但你无法为文本字段指定大小,所以请将其包裹在容器中。

英文:

wrap the text with the container and give a specific size to the container after that use overflow: TextOverflow.fade or any other property of "overflow", because these properties only work when you give a size to textfield but you cant give size to textfield so wrap it with container.

huangapple
  • 本文由 发表于 2023年2月8日 19:51:18
  • 转载请务必保留本文链接:https://go.coder-hub.com/75385407.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定