WebView
source
可以使用html code或是
<WebView
style={{ height :100}}
source={{ html: HTML}}
scalesPageToFit={true}
/>
載入html檔
<WebView
style={{ height :100}}
source={require('./hellow.html')}
scalesPageToFit={true}
/>
可以使用uri
<WebView
style={{ height :100}}
source={{
uri:'http://www.google.com',
method:'post',
body:'foo=bar&bar=foo'
}}
scalesPageToFit={false}
/>