Files
react-native/Libraries
Danilo Bürger 8fa116cc0e Fixed regression in SectionList caused by #21577 not being able to scroll to top on android (#24034)
Summary:
```
let index = params.itemIndex + 1;
```
to
```
let index = Platform.OS === 'ios' ? params.itemIndex : params.itemIndex - 1;
```
to fix an issue on iOS. Note however, how the sign for non iOS changed from `+` to `-` causing a crash on Android when trying to scroll to index 0 as that will be evaluated to -1 instead of 1 and thus be out of bounds.

[Android] [Fixed] - Fixed regression in SectionList caused by #21577 not being able to scroll to top on android
Pull Request resolved: https://github.com/facebook/react-native/pull/24034

Differential Revision: D14520796

Pulled By: cpojer

fbshipit-source-id: bb49619f49752fd3f343ef3b7bf1b86ac48af7f8
2019-03-19 07:32:20 -07:00
..
2019-02-28 09:46:05 -08:00
2019-03-14 07:00:27 -07:00
2018-12-11 20:01:00 -08:00
2019-03-14 07:00:27 -07:00
2019-01-17 02:41:59 -08:00
2018-10-31 01:37:26 -07:00
2019-03-06 14:57:30 -08:00
2019-03-14 07:00:27 -07:00
2019-03-14 07:00:27 -07:00
2019-03-06 14:57:30 -08:00