Last updated:
0 purchases
running text
Flutter widget "running text". Allows running an string list. Provides customizations including two
horizontal directions, velocity, fading when appearing or disappearing.
Features #
Usage #
This is a minimalistic example:
RunningTextView(
data: RunningTextModel([
"Learn how to find target keywords",
"Learn how to find target keywords for any page with our keyword research guide.",
"Thanks for using! Follow me for more!"
])
)
copied to clipboard
Full options:
RunningTextView(
data: RunningTextModel([
"Learn how to find target keywords",
"Learn how to find target keywords for any page with our keyword research guide.",
"Thanks for using! Follow me for more!"],
textStyle: const TextStyle(fontSize: 15, overflow: TextOverflow.visible),
softWrap: false,
velocity: 50,
direction: RunningTextDirection.leftToRight,
fadeSide: RunningTextFadeSide.both
tapEvents: [
() {
log("Tap 1");
},
() {
log("Tap 2");
}
],
defaultTapEvent: () {
log("Default tap");
}
)
)
copied to clipboard
Note #
If you use Running Text in AppBar as Title, you need to adjust titleTextStyle to match the textStyle
data of Running Text
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.