1.0.1 • Published 6 years ago
youtubeplayer-react-native v1.0.1
Youtube player for react native
**Version 1.0.0
A Simple react-native based youtube player.
Instalation
npm install --save react-native-webviewnpm i youtubeplayer-react-native --saveGetting started
import YoutubePlayer from 'youtubeplayer-react-native';
import {View} from 'react-native'
    state = {
        id : "dQw4w9WgXcQ"
    }
    render(){
        return(
            <View style = {{flex: 1}}>
                <YoutubePlayer videoId = {this.state.id} width= {300} height = {250} showControls = {true}/>
            </View>
        )
    }Props
videoId
You have to pass the youtube video Id.
autoplay (Default: false)
If autoplay is true the video will start automatically.
showinfo (Default: false)
If shoeinfo is true, information like title will be showed.
showControls (Default: false)
if true, the video controlers will be showed.
Contributing
Welcome =D
License
MIT