Issue
I try to find any way to add Iframe to my react native app.
I found react-iframe, but it didn't work for me. I followed document. I just import react-iframe and copy Iframe tag to use.
My result is like image below.
I need other way to use Iframe in react native app. Thank you.
Solution
I answer on my question.
I used webview for display Iframe.
<WebView
source={{html: '<iframe width="100%" height="50%" src="https://www.youtube.com/embed/cqyziA30whE" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe>'}}
style={{marginTop: 20}}
/>
Answered By - Mengseng Oeng Answer Checked By - Mildred Charles (PHPFixing Admin)
0 Comments:
Post a Comment
Note: Only a member of this blog may post a comment.