I am working on app where I have worked on app header . I have created custom component for header . Now I want to achieve stick header when user scroll down then I want to stick top header . Could someone please help me how to solve this issue .
Code
<View>
<Header navigation={navigation} newToken={this.state.token} />
<SearchBar
input={(value) => {
this.onChangeTextDelayed(value);
this.setState({
subCategoriesShow: true,
pharmLoader: true,
inputValue: value,
queries: [],
});
}}
handleBlur={() => this.setState({ subCategoriesShow: false })}
/>
</View>