← back to Beverlyhillsvideos App
app/(tabs)/videos.tsx
24 lines
import React from 'react';
import { StyleSheet } from 'react-native';
import { SafeAreaView } from 'react-native-safe-area-context';
import BHVWebView from '@/components/BHVWebView';
import { Colors } from '@/constants/Colors';
export default function VideosScreen() {
return (
<SafeAreaView style={styles.container} edges={['top']}>
<BHVWebView
initialUrl="https://beverlyhillsvideos.com/videos.html"
shareTitle="Beverly Hills Videos — Watch Films"
/>
</SafeAreaView>
);
}
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: Colors.cream,
},
});