How to change the entire theme's text color in Flutter?

后端 未结 5 1977
既然无缘
既然无缘 2021-02-01 12:34

There is probably something obvious I\'m missing. Is there one property that can change the color of all the text in a Flutter app?

The way I am doing it now is

5条回答
  •  谎友^
    谎友^ (楼主)
    2021-02-01 12:55

    For the entire app, you can set textTheme property in the Material app widget.

    MaterialApp(
      theme: ThemeData(
        textTheme: TextTheme(
          bodyText1: TextStyle(),
          bodyText2: TextStyle(),
        ).apply(
          bodyColor: Colors.orange, 
          displayColor: Colors.blue, 
        ),
      ),
    ) 
    

提交回复
热议问题