dart 为什么正文中的所有文本似乎都重叠在一行上,而不是在新的行上

w3nuxt5m  于 2023-09-28  发布在  其他
关注(0)|答案(1)|浏览(88)

Its an onboarding screen with some body text

PageViewModel(
      title: "",
        body: "Thousands of\ndoctors & experts to \nhelp your health!",
        footer: ElevatedButton(
          onPressed: () {},
          child: const Text("Next"),
        ),
        image: Center(child: Image.asset('assets/onboard1.png')),
        decoration: const PageDecoration(
            bodyTextStyle: TextStyle(
          color: Color(0xFF06B4A0),
          fontSize: 40,
          fontFamily: 'Urbanist',
          fontWeight: FontWeight.w700,
          height: 0.03,
        ))),

我已经尝试将正文字符串添加到文本小部件中,但它不允许,并给了我一个“只需要一个字符串?””错误。

iyr7buue

iyr7buue1#

增行

maxLines: 100,

到TextStyle小部件中。

相关问题