|
|
@ -304,13 +304,16 @@ class _AutoScrollTextState extends State<AutoScrollText> { |
|
|
|
style: widget.style, |
|
|
|
style: widget.style, |
|
|
|
textAlign: widget.textAlign, |
|
|
|
textAlign: widget.textAlign, |
|
|
|
) |
|
|
|
) |
|
|
|
: Text( |
|
|
|
: Padding( |
|
|
|
|
|
|
|
padding: widget.padding, |
|
|
|
|
|
|
|
child: Text( |
|
|
|
_endlessText ?? _text, |
|
|
|
_endlessText ?? _text, |
|
|
|
style: widget.style, |
|
|
|
style: widget.style, |
|
|
|
textAlign: widget.textAlign, |
|
|
|
textAlign: widget.textAlign, |
|
|
|
), |
|
|
|
), |
|
|
|
), |
|
|
|
), |
|
|
|
), |
|
|
|
), |
|
|
|
|
|
|
|
), |
|
|
|
); |
|
|
|
); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|