簡體   English   中英

為什么文字有黃色下划線,字體大?

[英]Why text has underline with yellow color with big font size?

代碼截圖和結果:

在此處輸入圖片說明

嗨,我有StatelessWidget ,它在其構建方法中返回Container ,而Text小部件作為子小部件。 但它的外觀和感覺並不像預期的那樣。 為什么是yellow下划線,如何去除?

我嘗試用StackColumnRow替換Container沒有任何變化。

因為你還沒有用材質小部件包裝你的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"),
           ),
        );

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM