dart 如何使Text.rich内容尽可能多的空间?

mctunoxg  于 2023-03-27  发布在  其他
关注(0)|答案(2)|浏览(123)

我试图通过使用www.example.com在一个屏幕上显示一页古兰经Text.rich但有些文本无法显示。如何使Text.rich内容尽可能多的空间?enter image description here
我试图通过使用www.example.com在一个屏幕上显示一页古兰经Text.rich但有些文本无法显示。如何使Text.rich的内容尽可能多的空间?

iqxoj9l9

iqxoj9l91#

请尝试Text.rich使用***扩展*** Package 您的www.example.com小部件

Expanded(
  child: Text.rich(
    // your text goes here
  ),
),
3z6pesqy

3z6pesqy2#

如果您想滚动页面以查看整个内容,请尝试将页面内容 Package 在SingleChildScrollView中。

SingleChildScrollView(
  child: Text.rich(
    // ...
  ),
)

相关问题