import * as React from 'react'; import { StyleSheet, View, ScrollView } from 'react-native'; import { Card, Paragraph } from 'react-native-paper'; import { useNavigation } from '@react-navigation/native'; import type { StackNavigationProp } from '@react-navigation/stack'; import { SafeAreaView } from 'react-native-safe-area-context'; import type { RootStackParamList } from '../App'; type HomeScreenNavigationProp = StackNavigationProp; function Home() { const { navigate } = useNavigation(); return ( React Native Amazon IVS Player - examples { navigate('SimpleExample'); }} > The simplest implementation of player. { navigate('AdvancedExample'); }} > More advanced implementation that allows stream management. { navigate('PlaygroundExample'); }} > Playground implementation to test and experiment with all props, refs and callbacks. ); } const styles = StyleSheet.create({ container: { flex: 1, }, description: { marginTop: 10, paddingHorizontal: 20, }, list: { padding: 10, }, card: { marginBottom: 10, }, }); export default Home;