Bluesky app fork with some witchin' additions 馃挮
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 97083bb55bf919243e227f108f60d31aef777c2e 12 lines 285 B view raw
1import React from 'react' 2import {Keyboard} from 'react-native' 3 4export function useOnKeyboardDidShow(cb: () => unknown) { 5 React.useEffect(() => { 6 const subscription = Keyboard.addListener('keyboardDidShow', cb) 7 8 return () => { 9 subscription.remove() 10 } 11 }, [cb]) 12}