UNPKG

react-native-reanimated-player

Version:

A react-native video player that interacts like Youtube player, built upon Reanimted v2 & react-native-gesture-handle

9 lines (8 loc) 257 B
import React from 'react'; import type { StyleProp, ViewStyle } from 'react-native'; declare type TapControlerProps = { onPress: () => void; style?: StyleProp<ViewStyle>; }; export declare const TapControler: React.FC<TapControlerProps>; export {};