Skip to content

Instantly share code, notes, and snippets.

View ManigandanRaamanathan's full-sized avatar
😇
Focusing

ManigandanRaamanathan

😇
Focusing
View GitHub Profile
@mmazzarolo
mmazzarolo / hideOnScroll.js
Last active October 31, 2023 07:32
react-native-action-button hide on scroll
// 1. Define a state variable for showing/hiding the action-button
state = {
isActionButtonVisible: true
}
// 2. Define a variable that will keep track of the current scroll position
_listViewOffset = 0
// 3. Add an onScroll listener to your listview/scrollview
<ListView