Bluesky app fork with some witchin' additions 馃挮 witchsky.app
bluesky fork client
120
fork

Configure Feed

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

at a876aae44ea07494ebea9727350aa060b81f317b 10 lines 258 B view raw
1import {View} from 'react-native' 2 3import {atoms as a, type ViewStyleProp} from '#/alf' 4 5export function Fill({ 6 children, 7 style, 8}: {children?: React.ReactNode} & ViewStyleProp) { 9 return <View style={[a.absolute, a.inset_0, style]}>{children}</View> 10}