@ -129,22 +129,24 @@ class RenderEmbedProxy extends RenderProxyBox implements RenderContentProxyBox {
class RichTextProxy extends SingleChildRenderObjectWidget {
/ / / Child argument should be an instance of RichText widget .
const RichTextProxy (
{ required RichText super . child ,
required this . textStyle ,
required this . textAlign ,
required this . textDirection ,
required this . locale ,
required this . strutStyle ,
this . textScaleFactor = 1.0 ,
this . textWidthBasis = TextWidthBasis . parent ,
this . textHeightBehavior ,
super . key } ) ;
const RichTextProxy ( {
required RichText super . child ,
required this . textStyle ,
required this . textAlign ,
required this . textDirection ,
required this . locale ,
required this . strutStyle ,
/ / TODO: This might needs to be updated , previous value was 1.0 using ` textScaleFactor `
this . textScaler = const TextScaler . linear ( 1 ) ,
this . textWidthBasis = TextWidthBasis . parent ,
this . textHeightBehavior ,
super . key ,
} ) ;
final TextStyle textStyle ;
final TextAlign textAlign ;
final TextDirection textDirection ;
final double textScaleFacto r;
final TextScaler textScale r;
final Locale locale ;
final StrutStyle strutStyle ;
final TextWidthBasis textWidthBasis ;
@ -152,16 +154,8 @@ class RichTextProxy extends SingleChildRenderObjectWidget {
@ override
RenderParagraphProxy createRenderObject ( BuildContext context ) {
return RenderParagraphProxy (
null ,
textStyle ,
textAlign ,
textDirection ,
textScaleFactor ,
strutStyle ,
locale ,
textWidthBasis ,
textHeightBehavior ) ;
return RenderParagraphProxy ( null , textStyle , textAlign , textDirection ,
textScaler , strutStyle , locale , textWidthBasis , textHeightBehavior ) ;
}
@ override
@ -171,7 +165,7 @@ class RichTextProxy extends SingleChildRenderObjectWidget {
. . textStyle = textStyle
. . textAlign = textAlign
. . textDirection = textDirection
. . textScaleFacto r = textScaleFacto r
. . textScaler = textScaler
. . locale = locale
. . strutStyle = strutStyle
. . textWidthBasis = textWidthBasis
@ -186,20 +180,21 @@ class RenderParagraphProxy extends RenderProxyBox
TextStyle textStyle ,
TextAlign textAlign ,
TextDirection textDirection ,
double textScaleFacto r,
TextScaler textScale r,
StrutStyle strutStyle ,
Locale locale ,
TextWidthBasis textWidthBasis ,
TextHeightBehavior ? textHeightBehavior ,
) : _prototypePainter = TextPainter (
text: TextSpan ( text: ' ' , style: textStyle ) ,
textAlign: textAlign ,
textDirection: textDirection ,
textScaleFactor: textScaleFactor ,
strutStyle: strutStyle ,
locale: locale ,
textWidthBasis: textWidthBasis ,
textHeightBehavior: textHeightBehavior ) ;
text: TextSpan ( text: ' ' , style: textStyle ) ,
textAlign: textAlign ,
textDirection: textDirection ,
textScaler: textScaler ,
strutStyle: strutStyle ,
locale: locale ,
textWidthBasis: textWidthBasis ,
textHeightBehavior: textHeightBehavior ,
) ;
final TextPainter _prototypePainter ;
@ -227,11 +222,11 @@ class RenderParagraphProxy extends RenderProxyBox
markNeedsLayout ( ) ;
}
set textScaleFactor ( double value ) {
if ( _prototypePainter . textScaleFacto r = = value ) {
set textScaler ( TextScaler value ) {
if ( _prototypePainter . textScaler = = value ) {
return ;
}
_prototypePainter . textScaleFacto r = value ;
_prototypePainter . textScaler = value ;
markNeedsLayout ( ) ;
}