通过定义 Theme,我们可以更好地复用颜色和字体样式,从而让整个 app 的设计看起来更一致。全局 Theme 会在整个 app 范围内生效,而局部 Theme 只作用于特定元素。其实所谓的全局 Theme 和局部 Theme 的区别只在于,全局 Theme 定义在了 app 的 root 处而已。而 MaterialApp 已经事先为你预设了一个全局的 Theme Widget。

在定义一个 Theme 之后,我们可以让它在指定的 Widgets(包括 Flutter 自带的 Material Widgets,例如 AppBars, Buttons, Checkboxes 等等)中生效。

定义一个全局 theme

全局 Theme 会影响整个 app 的颜色和字体样式。只需要向 MaterialApp 构造器传入 ThemeData 即可。

如果没有放置 Theme,Flutter 将会使用预设的样式。

  1. MaterialApp(
  2. title: title,
  3. theme: ThemeData(
  4. // Define the default Brightness and Colors
  5. brightness: Brightness.dark,
  6. primaryColor: Colors.lightBlue[800],
  7. accentColor: Colors.cyan[600],
  8. // Define the default Font Family
  9. fontFamily: 'Montserrat',
  10. // Define the default TextTheme. Use this to specify the default
  11. // text styling for headlines, titles, bodies of text, and more.
  12. textTheme: TextTheme(
  13. headline: TextStyle(fontSize: 72.0, fontWeight: FontWeight.bold),
  14. title: TextStyle(fontSize: 36.0, fontStyle: FontStyle.italic),
  15. body1: TextStyle(fontSize: 14.0, fontFamily: 'Hind'),
  16. ),
  17. )
  18. );

ThemeData 查看所有可自定义的颜色和字体样式。

定义一个局部 Theme

如果我们只想对局部进行样式修改,可以创建一个 Theme Widget。

有以下两种方式:定义一个独立的 ThemeData,或者从父级 Theme 扩展。下面为你分别介绍。

定义一个独立的 ThemeData

如果不想从任何全局 Theme 继承样式,我们可以创建一个 ThemeData() 实例,然后把它传给 Theme Widget:

  1. Theme(
  2. // Create a unique theme with "ThemeData"
  3. data: ThemeData(
  4. accentColor: Colors.yellow,
  5. ),
  6. child: FloatingActionButton(
  7. onPressed: () {},
  8. child: Icon(Icons.add),
  9. ),
  10. );

从父级 Theme 扩展

相比从头开始定义一套样式,从父级 Theme 扩展可能更常规一些,使用 copyWith 方法即可。

  1. Theme(
  2. // Find and Extend the parent theme using "copyWith". Please see the next
  3. // section for more info on `Theme.of`.
  4. data: Theme.of(context).copyWith(accentColor: Colors.yellow),
  5. child: FloatingActionButton(
  6. onPressed: null,
  7. child: Icon(Icons.add),
  8. ),
  9. );

使用定义好的 Theme

现在我们定义好了一个 Theme,接下来我们该使用它了!在我们的 Widget 的 build 方法中调用 Theme.of(context) 函数,我们可以让这些主题样式生效。

Theme.of(context) 会查询 Widget 树,并返回其中最近的 Theme。所以他会优先返回我们之前定义过的一个独立的 Theme,如果找不到,它会返回全局 Theme。

实际上,FloatingActionButton 就是使用这种方式来定义自己的 accentColor 的。

  1. Container(
  2. color: Theme.of(context).accentColor,
  3. child: Text(
  4. 'Text with a background color',
  5. style: Theme.of(context).textTheme.title,
  6. ),
  7. );

完整的例子

  1. import 'package:flutter/foundation.dart';
  2. import 'package:flutter/material.dart';
  3. void main() {
  4. runApp(MyApp());
  5. }
  6. class MyApp extends StatelessWidget {
  7. @override
  8. Widget build(BuildContext context) {
  9. final appName = 'Custom Themes';
  10. return MaterialApp(
  11. title: appName,
  12. theme: ThemeData(
  13. // Define the default Brightness and Colors
  14. brightness: Brightness.dark,
  15. primaryColor: Colors.lightBlue[800],
  16. accentColor: Colors.cyan[600],
  17. // Define the default Font Family
  18. fontFamily: 'Montserrat',
  19. // Define the default TextTheme. Use this to specify the default
  20. // text styling for headlines, titles, bodies of text, and more.
  21. textTheme: TextTheme(
  22. headline: TextStyle(fontSize: 72.0, fontWeight: FontWeight.bold),
  23. title: TextStyle(fontSize: 36.0, fontStyle: FontStyle.italic),
  24. body1: TextStyle(fontSize: 14.0, fontFamily: 'Hind'),
  25. ),
  26. ),
  27. home: MyHomePage(
  28. title: appName,
  29. ),
  30. );
  31. }
  32. }
  33. class MyHomePage extends StatelessWidget {
  34. final String title;
  35. MyHomePage({Key key, @required this.title}) : super(key: key);
  36. @override
  37. Widget build(BuildContext context) {
  38. return Scaffold(
  39. appBar: AppBar(
  40. title: Text(title),
  41. ),
  42. body: Center(
  43. child: Container(
  44. color: Theme.of(context).accentColor,
  45. child: Text(
  46. 'Text with a background color',
  47. style: Theme.of(context).textTheme.title,
  48. ),
  49. ),
  50. ),
  51. floatingActionButton: Theme(
  52. data: Theme.of(context).copyWith(accentColor: Colors.yellow),
  53. child: FloatingActionButton(
  54. onPressed: null,
  55. child: Icon(Icons.add),
  56. ),
  57. ),
  58. );
  59. }
  60. }

Themes Demo