0
import React, { View, WebView } from 'react-native'; 

export const YoutubeScreen = React.createClass({ 
render: function() { 
    return (
    <View style={{flex: 1}}> 
     <WebView 
     style={{flex:1}} 
     javaScriptEnabled={true} 
     source={{uri: 'https://www.youtube.com/embed/ZZ5LpwO-An4?rel=0&autoplay=0&showinfo=0&controls=0'}} 
    /> 
    </View> 
); 
} 
}); 

iOS'ta iyi çalışıyor. Bu bir hata ya da android için normal bir davranış.Tepki-yerel android için Webview yerleştirilmedi youtube url

cevap