forked from flutter/assets-for-api-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
theme_data.dart
147 lines (134 loc) · 4.73 KB
/
theme_data.dart
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
// Copyright 2019 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'dart:async';
import 'dart:io';
import 'package:diagram_capture/diagram_capture.dart';
import 'package:flutter/material.dart';
import 'diagram_step.dart';
import 'utils.dart';
const String _themeData = 'theme_data';
const String _materialAppThemeData = 'material_app_theme_data';
final GlobalKey _heroKey = GlobalKey();
final GlobalKey _canvasKey = GlobalKey();
final GlobalKey _bodyKey = GlobalKey();
final GlobalKey _appBarKey = GlobalKey();
final GlobalKey _fabKey = GlobalKey();
class ThemeDataDiagram extends StatelessWidget implements DiagramMetadata {
const ThemeDataDiagram(this.name);
@override
final String name;
@override
Widget build(BuildContext context) {
late Widget returnWidget;
switch (name) {
case _themeData:
returnWidget = ConstrainedBox(
key: UniqueKey(),
constraints: BoxConstraints.tight(const Size(150.0, 150.0)),
child: Container(
padding: const EdgeInsets.all(5.0),
color: Colors.white,
child: Center(
child: Theme(
data: ThemeData(primaryColor: Colors.blue),
child: Builder(
builder: (BuildContext context) {
return Container(
width: 100,
height: 100,
color: Theme.of(context).primaryColor,
);
},
),
),
),
),
);
break;
case _materialAppThemeData:
returnWidget = ConstrainedBox(
key: UniqueKey(),
constraints: BoxConstraints.tight(const Size(420, 533)),
child: Container(
padding: const EdgeInsets.only(right: 120),
color: Colors.white,
child: Center(
child: MaterialApp(
debugShowCheckedModeBanner: false,
theme: ThemeData(
primaryColor: Colors.blue,
accentColor: Colors.green,
textTheme: const TextTheme(bodyText2: TextStyle(color: Colors.purple)),
),
home: Stack(
children: <Widget>[
Positioned.fill(
child: Scaffold(
key: _heroKey,
appBar: AppBar(
key: _appBarKey,
title: const Text('ThemeData Demo'),
),
floatingActionButton: FloatingActionButton(
child: const Icon(Icons.add),
onPressed: () {},
key: _fabKey,
),
body: Center(
child: Text(
'Button pressed 0 times',
key: _bodyKey,
),
),
),
),
Positioned.fill(
child: LabelPainterWidget(
key: _canvasKey,
heroKey: _heroKey,
labels: <Label>[
Label(
_appBarKey,
' primaryColor',
const FractionalOffset(0.9, 0.6),
),
Label(
_bodyKey,
' bodyText2',
const FractionalOffset(1.1, 0.5),
),
Label(
_fabKey,
' accentColor',
const FractionalOffset(0.8, 0.5),
),
],
),
)
],
),
),
),
),
);
break;
}
return returnWidget;
}
}
class ThemeDataDiagramStep extends DiagramStep<ThemeDataDiagram> {
ThemeDataDiagramStep(DiagramController controller) : super(controller);
@override
final String category = 'material';
@override
Future<List<ThemeDataDiagram>> get diagrams async => <ThemeDataDiagram>[
const ThemeDataDiagram(_themeData),
const ThemeDataDiagram(_materialAppThemeData),
];
@override
Future<File> generateDiagram(ThemeDataDiagram diagram) async {
controller.builder = (BuildContext context) => diagram;
return await controller.drawDiagramToFile(File('${diagram.name}.png'));
}
}