question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Is there any reason why the ticker might not display for child arrays larger than 15 items? Oddly enough my ticker will display with up to 15 item arrays and no more, any idea why this might be? (marquee here is the array)

const DrawingMarquee = ({ marquee }) => (
  <TextTicker
    style={styles.marquee}
    duration={40000}
    loop={true}
    bounce={true}
    repeatSpacer={0}
    marqueeDelay={0}
    easing={Easing.linear}
  >
    {marquee}
  </TextTicker>
);

Issue Analytics

  • State:closed
  • Created 4 years ago
  • Comments:5 (2 by maintainers)

github_iconTop GitHub Comments

1reaction
deanhetcommented, Apr 23, 2019

Thanks for taking the time to look into this further! Will close the issue for now but if you happen to find a good fix please don’t hesitate to submit a pull request.

1reaction
daaashleycommented, Apr 22, 2019

For anyone that came across this error, it turns out most devices have a pixel overflow limit somewhere around 5000px. If you are trying to scroll a string or array that is very large across the screen, it will not render if it is larger than the device limit. As a workaround, you can use multiple marquees/scrollviews that alternate substrings/subarrays of what you want to display. You can also alternate arrays within a single marquee. To do this, though, you will have to reimplement this library in a custom way.

Read more comments on GitHub >

github_iconTop Results From Across the Web

What is the longest ticker symbol on the NYSE? - Quora
Tickers on the NYSE range from one to five characters long, with those of length five typically being used for mutual funds and...
Read more >
Field Name Maximum data length Definition - finra
Maximum data length. Definition. Ticker_Symbol. 14 characters. The unique symbol for the security. The format will be the same as published by the....
Read more >
Tick Size: Definition in Trading, Requirements, and Examples
Tick size is the minimum price amount a security can move in an exchange. It's expressed in decimal points, which in U.S. markets...
Read more >
When To Use MAX SIZE / FULL SIZE In The Stock Market
Alex Temiz, Millionaire Day Trader Breaks the Common Misconception that More Size Means Greater Returns while Day Trading!
Read more >
1 Tick Size, Maximum Price Variation, and Daily Price Limits ...
Download Table | 1 Tick Size, Maximum Price Variation, and Daily Price Limits on the Tokyo Stock Exchange from publication: Market Structure and...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found