如何在Flutter AppBar中更改文本的颜色?

时间:2020-03-12 17:55:05

标签: flutter dart

Widget getMain() {
return Scaffold(
  appBar: AppBar(
    centerTitle: true,
    backgroundColor: Colors.grey[800],
    title: Text("Guide.", style: textStyleBold),
  ), //AppBar

我已将应用栏的背景颜色设置为深灰色,而文本的颜色不是很好,而是黑色。我以为将其更改为白色将是一个快速修复,但是我没有运气。有什么建议?预先感谢

2 个答案:

答案 0 :(得分:1)

您可以使用TextStyle对象为“文本”小部件设置颜色:

@override
Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        centerTitle: true,
        backgroundColor: Colors.grey[800],
        title: Text(
          "Guide.",
          style: TextStyle(
            fontWeight: FontWeight.bold,
            color: Colors.amber,
          ),
        ),
      ),
      body: yourBodyWidget,
    );
}

请选中TextStyle,以进一步自定义文字。

答案 1 :(得分:-1)

appBar: AppBar(
    centerTitle: true,
    backgroundColor: Colors.grey[800],
    title: Text("Guide.", style: TextStyle(color: yourColor)),