You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have provided cellHeight, headerHeight too . Still I can see it does not scroll right. Am I missing something or doing wrong?
<AlphabetListView
data={data}
cell={data => {
return this.renderItem(data.item);
}}
cellHeight={50}
sectionListItem={data => {
return (
<View
style={{
alignItems: "center",
alignSelf: "center",
justifyContent: "center"
}}
>
The text was updated successfully, but these errors were encountered:
swati-kholiya
changed the title
On Alphabet click , list does not scroll to specified section header.
On Alphabet click , list does not scroll to that section as expected. Scroll Alignment is improper.
Dec 10, 2018
I have provided cellHeight, headerHeight too . Still I can see it does not scroll right. Am I missing something or doing wrong?
<AlphabetListView
data={data}
cell={data => {
return this.renderItem(data.item);
}}
cellHeight={50}
sectionListItem={data => {
return (
<View
style={{
alignItems: "center",
alignSelf: "center",
justifyContent: "center"
}}
>
{data.title}
);
}}
sectionHeader={data => {
return this.renderSectionHeader(data);
}}
sectionHeaderHeight={22.5}
updateScrollState={true}
/>
The text was updated successfully, but these errors were encountered: