Browse Source

update

pull/1/head
Bartosz Wróbel 2 years ago
parent
commit
7b08336b99
  1. 11
      lib/auto_scroll_text.dart

11
lib/auto_scroll_text.dart

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

Loading…
Cancel
Save