v0.2.1text_scroll
TextScroll Flutter विजेट में स्वचालित पाठ स्क्रॉलिंग कार्यक्षमता (मैरीकी पाठ) जोड़ता है।
188लाइक 18.6 हज़ार30-दिन डाउनलोड150Pub अंक
AndroidiOSWebmacOSWindowsLinux
yurii-khi/text_scroll open-source repository details.
{"sdk":"flutter"}यह अंग्रेज़ी मूल स्नैपशॉट है। नवीनतम सामग्री GitHub पर देखें।
TextScroll Flutter widget adds text auto-scrolling functionality (marquee text).
demo
endless and bouncing modesstyle and textAlign supportTo use this package, add text_scroll as a dependency in your pubspec.yaml file.
Minimal example:
TextScroll('This is the sample text for Flutter TextScroll widget. ')
Custom settings:
TextScroll(
'This is the sample text for Flutter TextScroll widget. ',
mode: TextScrollMode.bouncing,
velocity: Velocity(pixelsPerSecond: Offset(150, 0)),
delayBefore: Duration(milliseconds: 500),
numberOfReps: 5,
pauseBetween: Duration(milliseconds: 50),
style: TextStyle(color: Colors.green),
textAlign: TextAlign.right,
selectable: true,
)