react-native-text-ticker
react-native-text-ticker copied to clipboard
Force scrolling?
How can be forced the scrolling even when text is smaller than the container?
Thank you.
I guess from a UX point, the library isn't built to scroll text that doesn't need to be.
You can 'fake' this by just making the string longer. So instead of writing it once on the view, make a function like repeat("shortString", 2) so the output is "shortString shortString" which would trigger it to scroll.