Text goes out of Textfield – Flutter 文本超出了文本字段 – Flutter

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

Text goes out of Textfield - Flutter

问题

我有一个位于容器中心的文本字段。我的问题是,当我减小屏幕的高度时,文本字段中的文本越来越超出边界。我用一个容器包裹了文本字段并给它上色,看起来文本字段能正确地适应变化以适应容器,但文本或文本字段的输入行为独立运行,并随着高度的调整而超出边界。有解决方案吗?

  1. Column(
  2. mainAxisAlignment: MainAxisAlignment.center,
  3. children: [
  4. Container(
  5. height: height * 0.076823398741207,
  6. width: width * 0.414674703803783,
  7. decoration: BoxDecoration(
  8. color: Color.fromARGB(212, 17, 19, 57),
  9. borderRadius: BorderRadius.circular(20),
  10. ),
  11. child: Center(
  12. child: Row(
  13. children: [
  14. Expanded(
  15. child: TextField(
  16. style: TextStyle(
  17. color: Colors.white,
  18. fontSize: width * 0.0103928497193931,
  19. ),
  20. decoration: InputDecoration(
  21. filled: true,
  22. fillColor: Colors.red,
  23. constraints: BoxConstraints(
  24. minHeight: 120,
  25. ),
  26. contentPadding: EdgeInsets.only(
  27. left: width * 0.0166285595510289,
  28. ),
  29. border: InputBorder.none,
  30. ),
  31. ),
  32. ),
  33. ],
  34. ),
  35. ),
  36. ),
  37. ],
  38. )

问题示例

我尝试了许多解决方案,如用SingleChildScrollView包裹它,设置maxLinesminLines,但都没有用。唯一似乎能稍微改变文本行为的事情是在文本字段的InputDecorator的约束中设置maxHeightminHeight

英文:

So I have a textfield that is positionned in the center of a Container. My problem is the more I decrease the height of my screen the more the text of the textfiled goes out of the boundaries. I wrapped the textfiled with a container and gave it a color and it seems that the textfield is correctly adapting to the changes to fit the container but the Text or the input of the textfiled behaves on its own and goes out of the boundaries the more i adjust the height. Any solution ?

  1. Column(
  2. mainAxisAlignment: MainAxisAlignment.center,
  3. children: [
  4. Container(
  5. height: height * 0.076823398741207,
  6. width: width * 0.414674703803783,
  7. decoration: BoxDecoration(
  8. color: Color.fromARGB(212, 17, 19, 57),
  9. borderRadius: BorderRadius.circular(20),
  10. ),
  11. child: Center(
  12. child: Row(
  13. children: [
  14. Expanded(
  15. child: TextField(
  16. style: TextStyle(
  17. color: Colors.white,
  18. fontSize: width *
  19. 0.0103928497193931,
  20. ),
  21. decoration: InputDecoration(
  22. filled: true,
  23. fillColor: Colors.red,
  24. constraints: BoxConstraints(
  25. minHeight: 120),
  26. contentPadding:
  27. EdgeInsets.only(
  28. left: width *
  29. 0.0166285595510289,
  30. ),
  31. border: InputBorder.none,
  32. ),
  33. ),
  34. ),
  35. ],
  36. ),
  37. ),
  38. ),
  39. )

Sampel of the problem

I tried a lot of solutions such as wrapping it with a SingleChildScrollView, setting maxlines and minlines but nothing. The only thing that seems to change a little bit the behaviour of the text is setting maxHeight and minheight in the constraints of the InputDecorator of the textfield.

答案1

得分: 0

请尝试在您的“build”中这样做,而不是提供fontSize: width * 0.01...,否则上下文将无法访问。

  1. final cellHeight = MediaQuery.of(context).size.height / 100;
  2. final cellWidth = MediaQuery.of(context).size.width / 100;

通过这样做,您创建了两个变量,它们代表屏幕宽度或高度的1/100(响应式)。然后,您可以将您喜欢的fontSizecellHeightcellWidth相乘,确保fontSize是响应式的。

  1. Column(
  2. mainAxisAlignment: MainAxisAlignment.center,
  3. children: [
  4. Container(
  5. height: cellHeight * 8, // 例子
  6. width: cellWidth * 20, // 例子
  7. decoration: BoxDecoration(
  8. color: Color.fromARGB(212, 17, 19, 57),
  9. borderRadius: BorderRadius.circular(20),
  10. ),
  11. // ...
  12. child: TextField(
  13. style: TextStyle(
  14. color: Colors.white,
  15. fontSize: cellWidth * 7, // 例子
  16. ),
  17. decoration: InputDecoration(
  18. filled: true,
  19. // ...
  20. contentPadding: EdgeInsets.only(
  21. left: 5 * cellWidth, // 例子
  22. ),
  23. border: InputBorder.none,
  24. ),
  25. ),
  26. ),
  27. ],
  28. ),

如果这解决了您的问题,请告诉我。如果没有,请在您的问题中提供更多详细信息,愉快的编码!

英文:

Instead of giving fontSize: width * 0.01..., try doing like so in your build (or the context won't be accessible)

  1. final cellHeight = MediaQuery.of(context).size.height / 100;
  2. final cellWidht = MediaQuery.of(context).size.width / 100;

By doing so you create 2 variables that represent 1/100 of your screen width or height (responsive).
You can then multiply your cellHeight or cellWidth with the fontSize you prefer, grating the fontSize will be responsive.

  1. Column(
  2. mainAxisAlignment: MainAxisAlignment.center,
  3. children: [
  4. Container(
  5. height: cellHeight * 8, <-- EXAMPLE
  6. width: cellWidth * 20, <-- EXAMPLE
  7. decoration: BoxDecoration(
  8. color: Color.fromARGB(212, 17, 19, 57),
  9. borderRadius: BorderRadius.circular(20),
  10. ),
  11. ....
  12. child: TextField(
  13. style: TextStyle(
  14. color: Colors.white,
  15. fontSize: cellWidth * 7, <-- EXAMPLE
  16. ),
  17. decoration: InputDecoration(
  18. filled: true,
  19. ....
  20. contentPadding:EdgeInsets.only(
  21. left: 5 * cellWidth, <-- EXAMPLE
  22. ),
  23. border: InputBorder.none,
  24. ),
  25. ),
  26. ),
  27. ],
  28. ),
  29. ),
  30. ),
  31. )

Let me know if this solve your problem, if not, update your question with more details about what's wrong, happy coding!

答案2

得分: 0

解决方案是在 InputDecoration 中将 isDense 设置为 true

英文:

The solution was to set isDense to true in the InputDecoration.

huangapple
  • 本文由 发表于 2023年6月12日 17:29:16
  • 转载请务必保留本文链接:https://go.coder-hub.com/76455276.html
匿名

发表评论

匿名网友

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

确定