相关疑难解决方法(0)

Flutter RichText 未显示

我在支架内的https://api.flutter.dev/flutter/widgets/RichText-class.html的 Centered 中有一个常规的普通富文本小部件。我看不到它。我什么也看不见。调试工具显示富文本确实存在于小部件层次结构中(尽管我看不到其中的 TextSpan,大概它们就在那里。)

Scaffold(body: Center(child:
  RichText(
    text: TextSpan(
      text: 'Hello ',
      style: DefaultTextStyle.of(context).style,
      children: <TextSpan>[
        TextSpan(text: 'bold', style: TextStyle(fontWeight: FontWeight.bold)),
        TextSpan(text: ' world!'),
      ],
    ),
  ),
));
Run Code Online (Sandbox Code Playgroud)

flutter

6
推荐指数
2
解决办法
5201
查看次数

标签 统计

flutter ×1