@@ -106,16 +106,16 @@ class AppBarTheme with Diagnosticable {
106
106
///
107
107
/// See also:
108
108
///
109
- /// * [foregroundColor] , which overrides the default value for
110
- /// [AppBar.foregroundColor] in all descendant widgets.
109
+ /// * [foregroundColor] , which overrides the default value of
110
+ /// [AppBar.foregroundColor] in all descendant [AppBar] widgets.
111
111
final Color ? backgroundColor;
112
112
113
113
/// Overrides the default value of [AppBar.foregroundColor] in all
114
- /// descendant widgets.
114
+ /// descendant [AppBar] widgets.
115
115
///
116
116
/// See also:
117
117
///
118
- /// * [backgroundColor] , which overrides the default value for
118
+ /// * [backgroundColor] , which overrides the default value of
119
119
/// [AppBar.backgroundColor] in all descendant [AppBar] widgets.
120
120
final Color ? foregroundColor;
121
121
@@ -127,38 +127,38 @@ class AppBarTheme with Diagnosticable {
127
127
/// descendant [AppBar] widgets.
128
128
final double ? scrolledUnderElevation;
129
129
130
- /// Overrides the default value for [AppBar.shadowColor] in all
131
- /// descendant widgets.
130
+ /// Overrides the default value of [AppBar.shadowColor] in all
131
+ /// descendant [AppBar] widgets.
132
132
final Color ? shadowColor;
133
133
134
- /// Overrides the default value for [AppBar.surfaceTintColor] in all
135
- /// descendant widgets.
134
+ /// Overrides the default value of [AppBar.surfaceTintColor] in all
135
+ /// descendant [AppBar] widgets.
136
136
final Color ? surfaceTintColor;
137
137
138
- /// Overrides the default value for [AppBar.shape] in all
139
- /// descendant widgets.
138
+ /// Overrides the default value of [AppBar.shape] in all
139
+ /// descendant [AppBar] widgets.
140
140
final ShapeBorder ? shape;
141
141
142
142
/// Overrides the default value of [AppBar.iconTheme] in all
143
143
/// descendant [AppBar] widgets.
144
144
///
145
145
/// See also:
146
146
///
147
- /// * [actionsIconTheme] , which overrides the default value for
147
+ /// * [actionsIconTheme] , which overrides the default value of
148
148
/// [AppBar.actionsIconTheme] in all descendant [AppBar] widgets.
149
149
/// * [foregroundColor] , which overrides the default value
150
- /// [AppBar.foregroundColor] in all descendant widgets.
150
+ /// [AppBar.foregroundColor] in all descendant [AppBar] widgets.
151
151
final IconThemeData ? iconTheme;
152
152
153
153
/// Overrides the default value of [AppBar.actionsIconTheme] in all
154
- /// descendant widgets.
154
+ /// descendant [AppBar] widgets.
155
155
///
156
156
/// See also:
157
157
///
158
- /// * [iconTheme] , which overrides the default value for
159
- /// [AppBar.iconTheme] in all descendant widgets.
158
+ /// * [iconTheme] , which overrides the default value of
159
+ /// [AppBar.iconTheme] in all descendant [AppBar] widgets.
160
160
/// * [foregroundColor] , which overrides the default value
161
- /// [AppBar.foregroundColor] in all descendant widgets.
161
+ /// [AppBar.foregroundColor] in all descendant [AppBar] widgets.
162
162
final IconThemeData ? actionsIconTheme;
163
163
164
164
/// This property is deprecated, please use [toolbarTextStyle] and
@@ -169,27 +169,27 @@ class AppBarTheme with Diagnosticable {
169
169
///
170
170
/// See also:
171
171
///
172
- /// * [toolbarTextStyle] , which overrides the default value for
172
+ /// * [toolbarTextStyle] , which overrides the default value of
173
173
/// [AppBar.toolbarTextStyle in all descendant [AppBar] widgets.
174
- /// * [titleTextStyle] , which overrides the default value for
174
+ /// * [titleTextStyle] , which overrides the default value of
175
175
/// [AppBar.titleTextStyle in all descendant [AppBar] widgets.
176
176
@Deprecated (
177
177
'This property is no longer used, please use toolbarTextStyle and titleTextStyle instead. '
178
178
'This feature was deprecated after v2.4.0-0.0.pre.' ,
179
179
)
180
180
final TextTheme ? textTheme;
181
181
182
- /// Overrides the default value for [AppBar.centerTitle] .
183
- /// property in all descendant widgets.
182
+ /// Overrides the default value of [AppBar.centerTitle]
183
+ /// property in all descendant [AppBar] widgets.
184
184
final bool ? centerTitle;
185
185
186
- /// Overrides the default value for the obsolete [AppBar.titleSpacing]
186
+ /// Overrides the default value of the obsolete [AppBar.titleSpacing]
187
187
/// property in all descendant [AppBar] widgets.
188
188
///
189
189
/// If null, [AppBar] uses default value of [NavigationToolbar.kMiddleSpacing] .
190
190
final double ? titleSpacing;
191
191
192
- /// Overrides the default value for the [AppBar.toolbarHeight]
192
+ /// Overrides the default value of the [AppBar.toolbarHeight]
193
193
/// property in all descendant [AppBar] widgets.
194
194
///
195
195
/// See also:
@@ -198,7 +198,7 @@ class AppBarTheme with Diagnosticable {
198
198
/// height of an AppBar widget, taking this value into account.
199
199
final double ? toolbarHeight;
200
200
201
- /// Overrides the default value for the obsolete [AppBar.toolbarTextStyle]
201
+ /// Overrides the default value of the obsolete [AppBar.toolbarTextStyle]
202
202
/// property in all descendant [AppBar] widgets.
203
203
///
204
204
/// If this property is specified, then [backwardsCompatibility]
0 commit comments