Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Android][SectionList/FlatList] scrollTo not working because offset is outside rendered "canvas" #15479

Closed
peterjuras opened this issue Aug 13, 2017 · 1 comment
Labels
Resolution: Locked This issue was locked by the bot.

Comments

@peterjuras
Copy link
Contributor

peterjuras commented Aug 13, 2017

Is this a bug report?

Yes

Have you read the Contributing Guidelines?

Yes

Environment

  1. react-native -v: 0.46.4
  2. node -v: 8.1.4
  3. npm -v: 5.3.0
  4. yarn --version: 0.27.5

Then, specify:

  • Target Platform: Android
  • Development Operating System: macOS
  • Build tools: irrelevant for bug

Steps to Reproduce

In general, I am trying to preserve scroll position when a user navigates away from a ListView and then back again.

  1. Display a or (I'm using SectionList for my use case) with 1000 items à ~50 pixels height
  2. In componentDidMount scroll to an offset that is deep down the list (e.g. offset 1000). You can use the scrollTo method of the underlying ref (this.sectionList._wrapperListRef._listRef) or implement getItemLayout and use scrollToLocation*
  3. Wrap the scrollTo* call in a setTimeout(... scrollTo ..., 0)

Expected Behavior

On Android it should scroll until the desired position, just like on iOS.

Actual Behavior

-> On iOS it is working, on Android it will only scroll until the 10th item, because only 10 items are rendered initally

Workaround: Setting initialNumToRender to 1000 will work, but this might crash on low end devices.

Reproducible Demo

Please check out this CRNA sample to reproduce the bug:
https://github.com/peterjuras/rn-list-scrollTo-bug

@peterjuras
Copy link
Contributor Author

Reopened #15695

@facebook facebook locked as resolved and limited conversation to collaborators Aug 29, 2018
@react-native-bot react-native-bot added the Resolution: Locked This issue was locked by the bot. label Aug 29, 2018
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
Resolution: Locked This issue was locked by the bot.
Projects
None yet
Development

No branches or pull requests

2 participants