Answers for "all property text in flutter"

0

flutter text wisget

const Text(
  this.data, {
  Key key,
  this.style,
  this.strutStyle,
  this.textAlign,
  this.textDirection,
  this.locale,
  this.softWrap,
  this.overflow,
  this.textScaleFactor,
  this.maxLines,
  this.semanticsLabel,
  this.textWidthBasis,
  this.textHeightBehavior,
}) : assert(
       data != null,
       'A non-null String must be provided to a Text widget.',
     ),
     textSpan = null,
     _applyTextScaleFactorToWidgetSpan = true,
     super(key: key);
Posted by: Guest on September-11-2020

Code answers related to "all property text in flutter"

Browse Popular Code Answers by Language