import 'package:flutter/material.dart';
import 'package:flutter/foundation.dart';

void main(){
  runApp(new MyApp());
}

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    final appName = "自定义主题";
    return  new MaterialApp(
      title:appName,
      theme: new ThemeData(
        brightness: Brightness.light,//应用程序整体主题的亮度
        primaryColor: Colors.lightGreen[600], //app主要部分的背景色
        accentColor: Colors.orange[600], //前景色 (文本按钮)
    ),
      home: new MyHomePage(
        title:appName
      ),
    );
  }
}

class MyHomePage extends StatelessWidget {
  final String title;
  MyHomePage({Key key, this.title}) : super(key: key);
  @override
  Widget build(BuildContext context) {
    return new Scaffold(
      appBar: new AppBar(
        title: new Text(title),
      ),
      body: new Center(
        child: new Container(
          color: Theme.of(context).accentColor,
          child: new Text(
            '带有背景色的文本组件',
            style:Theme.of(context).textTheme.title,
          ),
        ),
      ),
      floatingActionButton: new Theme(
        data: Theme.of(context).copyWith(accentColor: Colors.yellow),
        child: new FloatingActionButton(
          onPressed: null,
          child: new Icon(Icons.compare),
        ),
      ),
    );
  }
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53

flutter-theme.png

如果在应用程序的某一部分使用特殊颜色,需要覆盖全局主题。有两种方法可以解决这个需求。

  1. 创建特有的主题数据
  new MaterialApp(
      title:appName,
      theme: new ThemeData(
        brightness: Brightness.light,//应用程序整体主题的亮度
        primaryColor: Colors.lightGreen[600], //app主要部分的背景色
        accentColor: Colors.orange[600], //前景色 (文本按钮)
    ),
      home: new MyHomePage(
        title:appName
      ),
    );
1
2
3
4
5
6
7
8
9
10
11
  1. 扩展父主题
 	new Theme(
        data: Theme.of(context).copyWith(accentColor: Colors.yellow),
        child: new FloatingActionButton(
          onPressed: null,
          child: new Icon(Icons.compare),
        ),
      ),
1
2
3
4
5
6
7

定义主题后,都需要用Theme.of(content)通过上下文获取主题。方法是查找最近的主题,如果找不到,就会找整个应用的主题。

相关链接: Theme.of

TOC