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

后端 未结 5 1854
既然无缘
既然无缘 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:49

    To provide an alternative that seems to work without setting all the Text styles directly is to change the style of the DefaultTextStyle at the place in the Widget tree to take effect

    return DefaultTextStyle(
      style: TextStyle(color: Colors.pink),
      child: _YOUR_WIDGETS_
    )
    

提交回复
热议问题