English | 한국어
Have you ever struggled with complex setup and manual WebView integration just to use Vimeo player in React Native?
With the lack of actively maintained Vimeo player libraries for React Native, react-native-vimeo-bridge
provides a seamless way to integrate the Vimeo Player JS API into your React Native applications.
- ✅ Full TypeScript Support - Enhanced type safety and developer experience
- ✅ Cross-Platform - Works on iOS, Android, and Web
- ✅ New Architecture Compatible - Full support for React Native's latest architecture
- ✅ Rich API Support - Access to all core Vimeo Player JS API features
- ✅ React Native Development - Provides an intuitive, easy-to-use Hook-based API, much like Expo's approach
- ✅ Expo Compatible - Ready to use in Expo projects
- 📁 Example Project - Real implementation code and various use cases
- 🌐 Web Demo - Try it in your browser
- 🤖 Expo Go - Try it on Expo Snack
# npm
npm install react-native-vimeo-bridge
# pnpm
pnpm add react-native-vimeo-bridge
# yarn
yarn add react-native-vimeo-bridge
# bun
bun add react-native-vimeo-bridge
import { useVimeoPlayer, VimeoView } from 'react-native-vimeo-bridge';
function App() {
const player = useVimeoPlayer('https://player.vimeo.com/video/76979871?h=8272103f6e');
return (
<VimeoView player={player} />
);
}
Listen to Vimeo Player state changes in real-time. Use the useVimeoEvent
Hook to subscribe to events in two ways.
import { useVimeoEvent, useVimeoPlayer, VimeoView } from 'react-native-vimeo-bridge';
function App() {
const [isPlaying, setIsPlaying] = useState(false);
const player = useVimeoPlayer('https://player.vimeo.com/video/76979871?h=8272103f6e');
// Method 1: Receive as state (timeupdate event supports interval configuration)
const timeupdateState = useVimeoEvent(player, 'timeupdate', 250); // 250ms interval (default)
// Method 2: Handle with callback
useVimeoEvent(player, 'playing', (data) => {
console.log('Playback started:', data);
setIsPlaying(true);
});
useVimeoEvent(player, 'pause', () => {
setIsPlaying(false);
});
console.log('Current time:', timeupdateState?.seconds);
return (
<VimeoView player={player} />
);
}
Control various player functions programmatically through Vimeo Player methods such as play, pause, seek, volume control, and more.
import { useVimeoEvent, useVimeoPlayer, VimeoView } from 'react-native-vimeo-bridge';
function App() {
const player = useVimeoPlayer('https://player.vimeo.com/video/76979871?h=8272103f6e');
const [isPlaying, setIsPlaying] = useState(false);
const timeupdate = useVimeoEvent(player, 'timeupdate', 250);
const currentTime = safeNumber(timeupdate?.seconds);
const handlePlayPause = useCallback(async () => {
if (isPlaying) {
await player.pause();
} else {
await player.play();
}
}, [isPlaying, player]);
const seekTo = useCallback(async (seconds: number) => {
await player.setCurrentTime(seconds);
}, [player]);
return (
<View>
<VimeoView player={player} />
<View style={styles.controls}>
<TouchableOpacity onPress={() => seekTo(currentTime - 10)}>
<Text>⏪ -10s</Text>
</TouchableOpacity>
<TouchableOpacity onPress={handlePlayPause}>
<Text>{isPlaying ? '⏸️ Pause' : '▶️ Play'}</Text>
</TouchableOpacity>
<TouchableOpacity onPress={() => seekTo(currentTime + 10)}>
<Text>⏭️ +10s</Text>
</TouchableOpacity>
</View>
</View>
);
}
Customize initial settings through Vimeo Player embed options.
import { useVimeoPlayer, VimeoView } from 'react-native-vimeo-bridge';
function App() {
const player = useVimeoPlayer('https://player.vimeo.com/video/76979871?h=8272103f6e', {
autoplay: true,
controls: true,
loop: true,
quality: '1080p',
playsinline: true,
});
return (
<VimeoView player={player} />
);
}
Customize the player's iframe or webview styling.
import { VimeoView } from 'react-native-vimeo-bridge';
function App() {
return (
<VimeoView
player={player}
height={400}
width="100%"
style={{
borderRadius: 12,
overflow: 'hidden',
backgroundColor: '#000',
}}
// Web platform iframe styles
iframeStyle={{
aspectRatio: 16 / 9,
border: 'none',
}}
// Mobile platform WebView styles
webViewStyle={{
backgroundColor: 'transparent',
}}
// Mobile platform WebView additional props
webViewProps={{
allowsFullscreenVideo: true,
mediaPlaybackRequiresUserAction: false,
}}
/>
);
}
Use the useVimeoOEmbed
hook to fetch Vimeo video metadata.
import { useVimeoOEmbed } from 'react-native-vimeo-bridge';
function App() {
const { oEmbed, isLoading, error } = useVimeoOEmbed('https://player.vimeo.com/video/76979871?h=8272103f6e');
if (isLoading) return <Text>Loading...</Text>;
if (error) return <Text>Error: {error.message}</Text>;
if (!oEmbed) return null;
return (
<>
<Text>{oEmbed.title}</Text>
<Image
source={{ uri: oEmbed?.thumbnail_url }}
style={{ width: oEmbed?.thumbnail_width, height: oEmbed?.thumbnail_height }}
/>
</>
)
}
See the contributing guide to learn how to contribute to the repository and the development workflow.