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

Configure Feed

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

at main 9 lines 275 B view raw
1// sticky headers need top offset for safe area on iOS PWA 2import {useSafeAreaInsets} from 'react-native-safe-area-context' 3 4import {atoms as a, web} from '#/alf' 5 6export function useStickyTop() { 7 const {top} = useSafeAreaInsets() 8 return web([a.sticky, {top}, a.z_10]) 9}