DefaultTextStyle constructor
- Key? key,
- required TextStyle style,
- TextAlign? textAlign,
- bool softWrap = true,
- TextOverflow overflow = TextOverflow.clip,
- int? maxLines,
- TextWidthBasis textWidthBasis = TextWidthBasis.parent,
- TextHeightBehavior? textHeightBehavior,
- required Widget child,
Creates a default text style for the given subtree.
Consider using DefaultTextStyle.merge to inherit styling information from the current default text style for a given BuildContext.
The maxLines property may be null (and indeed defaults to null), but if it is not null, it must be greater than zero.
Implementation
const DefaultTextStyle({
super.key,
required this.style,
this.textAlign,
this.softWrap = true,
this.overflow = TextOverflow.clip,
this.maxLines,
this.textWidthBasis = TextWidthBasis.parent,
this.textHeightBehavior,
required super.child,
}) : assert(maxLines == null || maxLines > 0);