Skip to content

Instantly share code, notes, and snippets.

@reime005
Created December 25, 2020 18:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save reime005/ac4962a3208035b0dcdbd3ee24e67a1d to your computer and use it in GitHub Desktop.
Save reime005/ac4962a3208035b0dcdbd3ee24e67a1d to your computer and use it in GitHub Desktop.
import { ScrollView } from 'react-native';
const StickyList = () => {
return (
<ScrollView
style={{ flex: 1, backgroundColor: '#fff' }}
stickyHeaderIndices={[0, 3]}>
<TextEl>sticky 0</TextEl>
<TextEl>not sticky</TextEl>
<TextEl>not sticky</TextEl>
<TextEl>sticky 1</TextEl>
<TextEl>not sticky</TextEl>
<TextEl>not sticky</TextEl>
<TextEl>not sticky</TextEl>
<TextEl>not sticky</TextEl>
</ScrollView>
);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment