How to use Iframe in react native?
问题 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. 回答1: Try to use WebView: import { WebView } from 'react-native'; .... <WebView scalesPageToFit={true} bounces={false} javaScriptEnabled style={{ height: 500, width: 300 }} source={{ html: ` <!DOCTYPE html> <html> <head