We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eb9845f commit d46cfdeCopy full SHA for d46cfde
lib/src/style.dart
@@ -228,6 +228,12 @@ class Style {
228
///
229
TextOverflow? textOverflow;
230
231
+ /// CSS Attribute "`text-transform`"
232
+ ///
233
+ /// `uppercase`, `lowercase`, `capitalize`, and `none` supported.
234
235
+ /// Inherited: yes,
236
+ /// Default: `none`
237
TextTransform? textTransform;
238
239
Style({
@@ -268,7 +274,7 @@ class Style {
268
274
this.alignment,
269
275
this.maxLines,
270
276
this.textOverflow,
271
- this.textTransform = TextTransform.none,
277
+ this.textTransform,
272
278
}) {
273
279
if (alignment == null && (display?.isBlock ?? false)) {
280
alignment = Alignment.centerLeft;
0 commit comments