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

Configure Feed

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

at a876aae44ea07494ebea9727350aa060b81f317b 36 lines 1.0 kB view raw
1import {type ColorValue, type NativeSyntheticEvent} from 'react-native' 2 3export type BottomSheetState = 'closed' | 'closing' | 'open' | 'opening' 4 5export enum BottomSheetSnapPoint { 6 Hidden, 7 Partial, 8 Full, 9} 10 11export type BottomSheetAttemptDismissEvent = NativeSyntheticEvent<object> 12export type BottomSheetSnapPointChangeEvent = NativeSyntheticEvent<{ 13 snapPoint: BottomSheetSnapPoint 14}> 15export type BottomSheetStateChangeEvent = NativeSyntheticEvent<{ 16 state: BottomSheetState 17}> 18 19export interface BottomSheetViewProps { 20 children: React.ReactNode 21 cornerRadius?: number 22 preventDismiss?: boolean 23 preventExpansion?: boolean 24 backgroundColor?: ColorValue 25 containerBackgroundColor?: ColorValue 26 disableDrag?: boolean 27 sourceViewTag?: number 28 29 fullHeight?: boolean 30 minHeight?: number 31 maxHeight?: number 32 33 onAttemptDismiss?: (event: BottomSheetAttemptDismissEvent) => void 34 onSnapPointChange?: (event: BottomSheetSnapPointChangeEvent) => void 35 onStateChange?: (event: BottomSheetStateChangeEvent) => void 36}