show scroll to top button when scrolling stops

This commit is contained in:
Ansh Nanda 2023-05-23 15:48:14 -07:00
parent 0fd5c9294a
commit 858ec6438d
3 changed files with 28 additions and 3 deletions

View file

@ -2,6 +2,9 @@ import {useState} from 'react'
import {NativeSyntheticEvent, NativeScrollEvent} from 'react-native'
import {RootStoreModel} from 'state/index'
export type onMomentumScrollEndCb = (
event: NativeSyntheticEvent<NativeScrollEvent>,
) => void
export type OnScrollCb = (
event: NativeSyntheticEvent<NativeScrollEvent>,
) => void