We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I read your code but I didn't figure out what you've done to make it work.
The text was updated successfully, but these errors were encountered:
Probably use stickySectionHeadersEnabled, check the docs for more: https://reactnative.dev/docs/sectionlist#rendersectionheader
stickySectionHeadersEnabled
Sorry, something went wrong.
Yes, stickySectionHeadersEnabled works for me.
<AlphabetList data={data} stickySectionHeadersEnabled indexLetterStyle={styles.indexLetterStyle} letterListContainerStyle={styles.letterListContainerStyle} indexLetterContainerStyle={styles.indexLetterContainerStyle} renderCustomItem={(item) => ( <View style={styles.listItemContainer}> <Text style={styles.listItemLabel}>{item.value}</Text> </View> )} renderCustomSectionHeader={(section) => ( <View style={styles.sectionHeaderContainer}> <Text style={styles.sectionHeaderLabel}>{section.title}</Text> </View> )} />
I've searched the codebase, I didn't find stickySectionHeadersEnabled appears in it. that's weird.
No branches or pull requests
I read your code but I didn't figure out what you've done to make it work.
The text was updated successfully, but these errors were encountered: