Попробуйте использовать WebView:
import { WebView } from 'react-native';
....
<WebView
scalesPageToFit={true}
bounces={false}
javaScriptEnabled
style={{ height: 500, width: 300 }}
source={{
html: `
<!DOCTYPE html>
<html>
<head></head> // <--add header styles if needed
<body>
<div id="baseDiv">${iframeString}</div> //<--- add your iframe here
</body>
</html>
`,
}}
automaticallyAdjustContentInsets={false}
/>
Я использую его для отображения различного веб-контента, включая iframes, и он прекрасно работает.
https://facebook.github.io/react-native/docs/webview