覆盖文字主题

时间:2020-07-26 14:34:35

标签: flutter

在这样的特定情况下,是否可以扩展Theme.of(context).textTheme.bodyText2的样式?

我想在使用AppBar主题时为bodyText2文本添加颜色

示例代码:

main.dart

void main() {
  // =========================================================================
  // THEME COLORS
  // =========================================================================

  final primary = Color(0xff222222);
  final dimmed = Color(0xff838383);

  // =========================================================================
  // ENTRY POINT
  // =========================================================================

  runApp(MaterialApp(
    debugShowCheckedModeBanner: false,
    theme: ThemeData(
      fontFamily: 'Avenir',
      textTheme: TextTheme(
        bodyText1: TextStyle(
          fontFamily: 'Avenir',
          fontSize: 16,
        ),
        bodyText2: TextStyle(
          fontFamily: 'Avenir',
          fontWeight: FontWeight.w700,
          fontSize: 16,
        ),
      ),
      primaryColor: primary,
      accentColor: dimmed,
    ),
    home: App(),
  ));
}

IsaAppBar.dart

// =========================================================================
// IsaAppBar State
// =========================================================================
class _IsaAppBarState extends State<IsaAppBar> {
  String get title => widget.title;

  @override
  Widget build(BuildContext context) {
    return AppBar(
        backgroundColor: Theme.of(context).primaryColor,
        title: Align(
            alignment: Alignment.topLeft,
            child: Text('ISA', style: Theme.of(context).textTheme.bodyText2)));
  }
}

1 个答案:

答案 0 :(得分:2)

您可以使用import vlc p = vlc.MediaPlayer(r"C:\Users\username\Downloads\test.mp3") p.play() while True: pass 方法

.copyWith()