AdaptiveText constructor

const AdaptiveText(
  1. String text, {
  2. Key? key,
  3. TextStyle? style,
  4. TextAlign? textAlign,
  5. int? maxLines,
  6. TextOverflow? overflow,
  7. bool allowFontScaling = false,
  8. double? minFontSize,
  9. double? maxFontSize,
})

Implementation

const AdaptiveText(
  this.text, {
  super.key,
  this.style,
  this.textAlign,
  this.maxLines,
  this.overflow,
  this.allowFontScaling = false,
  this.minFontSize,
  this.maxFontSize,
});