const WEBVIEW = "WEBVIEW"; import React, { Component } from "react"; import { StatusBar, View, TouchableOpacity, Text } from "react-native"; import { WebView } from "react-native-webview"; export default ({ navigation: { navigate } }) => ( navigate("Apps")}> 閉じる ); const styles = { View: { height: "100%", backgroundColor: "#0099CC" }, touch: { padding: 10, flexDirection: "row", borderColor: "white", borderWidth: 1, margin: 10, borderRadius: 5, alignItems: "center", }, };