📜  flutter ThemeData.dark().copyWith fontfamily - 任何代码示例

📅  最后修改于: 2022-03-11 15:00:36.603000             🧑  作者: Mango

代码示例2
ThemeData lightTheme = ThemeData.dark().copyWith(
    textTheme: ThemeData.dark().textTheme.apply(
          fontFamily: 'RobotoMono',
        ),
    primaryTextTheme: ThemeData.dark().textTheme.apply(
          fontFamily: 'RobotoMono',
        ),
    accentTextTheme: ThemeData.dark().textTheme.apply(
          fontFamily: 'RobotoMono',
        ),
);