**notepad** app.json
{
"expo": {
"name": "LP Museum1",
"slug": "lpmuseum1",
"privacy": "public",
"sdkVersion": "39.0.0",
"platforms": ["android", "ios", "web"],
"version": "1.0.1",
"orientation": "portrait",
"icon": "./assets/icon.png",
"splash": {
"image": "./assets/splash.png",
"resizeMode": "contain",
"backgroundColor": "#ffffdd"
},
"updates": { "fallbackToCacheTimeout": 0 },
"assetBundlePatterns": [ "**/*" ],
"android": {
"package": "com.thaiall.lpmuseum",
"versionCode": 1,
"permissions": []
}
},
"name": "lpmuseum1"
}
**notepad** App.js
import React, { Component } from 'react'
import { WebView } from 'react-native-webview'
export default class App extends Component {
render() {
var myhtml = "<link href='https://fonts.googleapis.com/css?family=Kanit:400,300&subset=thai,latin' rel='stylesheet' type='text/css'>"
myhtml = myhtml + "<style type='text/css'>body { font-family: 'Kanit'; background-color:#ddffdd; }</style>"
myhtml += "<center><h1><span style={{ fontFamily: 'Kanit' }}><div style='font-family:Kanit; font-size:72px;'>การจัดการ</div>"
myhtml += "<br/>การจัดการพิพิธภัณฑ์ชุมชน<br/>ในระบบอิเล็กทรอนิกส์ของจังหวัดลำปาง<br/>โดย พระครูสิริธรรมบัณฑิต, ผศ.<br/>ผู้อำนวยการวิทยาลัยสงฆ์นครลำปาง<br/>หัวหน้าแผนวิจัยและคณะ<br/><br/><a href='http://www.lpmuseum.net/banlook.html'>วัดบ้านหลุก</a><br/><a href='http://www.lpmuseum.net/pongsanook.html'>วัดปงสนุกเหนือ</a><br/><a href='http://www.lpmuseum.net/raihen.html'>วัดไหล่หินหลวง</a><br/><a href=http://www.lpmuseum.net/research.html><img src=http://www.lpmuseum.net/images/research%20index.jpg></a></h1></center>"
return (
<WebView
originWhitelist={['*']}
source={{ html: myhtml }}
style={{marginTop: 50}}
/>
);
}
}
**notepad** App.js
import React, { Component } from 'react';
import { WebView } from 'react-native-webview';
export default class App extends Component {
render() {
return (
<WebView
originWhitelist={['*']}
source={{ html: "<center><h1><div style='font-size:72;'>LP MUSEUM</div>
<br/>การจัดการพิพิธภัณฑ์ชุมชน<br/>ในระบบอิเล็กทรอนิกส์ของจังหวัดลำปาง<br/>โดย พระครูสิริธรรมบัณฑิต, ผศ.
<br/>ผู้อำนวยการวิทยาลัยสงฆ์นครลำปาง<br/>หัวหน้าแผนวิจัยและคณะ<br/>
<br/><a href='http://www.lpmuseum.net/banlook.html'>วัดบ้านหลุก</a>
<br/><a href='http://www.lpmuseum.net/pongsanook.html'>วัดปงสนุกเหนือ</a>
<br/><a href='http://www.lpmuseum.net/raihen.html'>วัดไหล่หินหลวง</a>
<br/><a href=http://www.lpmuseum.net/research.html>
<img src=http://www.lpmuseum.net/images/research%20index.jpg></a></h1></center>" }}
style={{marginTop: 50}}
/>
);
}
}
**notepad** eas.json
{
"cli": {
"version": ">= 0.52.0"
},
"build": {
"development": {
"distribution": "internal",
"android": {
"gradleCommand": ":app:assembleDebug",
"autoIncrement": true
},
"ios": {
"buildConfiguration": "Debug"
}
},
"preview": {
"distribution": "internal"
},
"production": {}
},
"submit": {
"production": {}
}
}