为什么文本有黄色下划线和大字体?
Why text has underline with yellow color with big font size?
代码及其结果的屏幕截图:
您好,我有 StatelessWidget
,其中 Container
在其构建方法中返回,Text
小部件作为子小部件。但它的外观和感觉并不像预期的那样。为什么 yellow
是下划线,我该如何删除它?
我尝试用 Stack
、Column
和 Row
替换 Container
没有任何变化。
因为您还没有用 material 小部件包装 Text
小部件。您可以根据需要使用 Scaffold
或颜色 属性 的 Material
小部件进行包装。
示例:
Scaffold(body: Center(child: Text("Here is the text")))
或:
Material(color: Colors.white, child: Center(child: Text("Here is the text")))
每个屏幕都应该有一个脚手架小部件
@override
Widget build(BuildContext context) {
return Scaffold(
body:Container(
child:Text("your text"),
),
);
代码及其结果的屏幕截图:
您好,我有 StatelessWidget
,其中 Container
在其构建方法中返回,Text
小部件作为子小部件。但它的外观和感觉并不像预期的那样。为什么 yellow
是下划线,我该如何删除它?
我尝试用 Stack
、Column
和 Row
替换 Container
没有任何变化。
因为您还没有用 material 小部件包装 Text
小部件。您可以根据需要使用 Scaffold
或颜色 属性 的 Material
小部件进行包装。
示例:
Scaffold(body: Center(child: Text("Here is the text")))
或:
Material(color: Colors.white, child: Center(child: Text("Here is the text")))
每个屏幕都应该有一个脚手架小部件
@override
Widget build(BuildContext context) {
return Scaffold(
body:Container(
child:Text("your text"),
),
);