博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[React Native] Using the WebView component
阅读量:6346 次
发布时间:2019-06-22

本文共 840 字,大约阅读时间需要 2 分钟。

We can access web pages in our React Native application using the WebView component. We will connect the links in our repository component to their Github web page when a user click on them.

 

Navigate to WebView component:

openPage(url){        this.props.navigator.push({            component: Web,            title: 'Web View',            passProps: {url}        });    }

 

Web View Compnent:

import React from 'react';import {    View,    WebView,    StyleSheet} from 'react-native';var styles = StyleSheet.create({    container: {        flex: 1,        backgroundColor: '#F6F6EF',        flexDirection: 'column',    },});class Web extends React.Component{    render(){        return (            
); }}Web.propTypes = { url: React.PropTypes.string.isRequired};module.exports = Web;

 

转载地址:http://imcla.baihongyu.com/

你可能感兴趣的文章
类继承的结构
查看>>
Intel 被 ARM 逼急了
查看>>
testng + reportng 测试结果邮件发送
查看>>
神操作:如何将Vim变成一个R语言IDE
查看>>
百度亮相iDASH,推动隐私保护在人类基因组分析领域的应用
查看>>
民航局:春运期间10个大型机场将延长国内航班运行时间
查看>>
比特币暴涨拉升至1w美元以上,说比特币崩盘的专家要失望了
查看>>
Python「八宗罪」
查看>>
你的隐私还安全吗?社交网络中浏览历史的去匿名化
查看>>
NeurIPS 2018|如何用循环关系网络解决数独类关系推理任务?
查看>>
Windows 10 份额突破 40%,Windows 7 连跌四月终回升
查看>>
怎么把Maven项目转为动态Web项目?
查看>>
Arm发布Cortex-A76AE自动驾驶芯片架构,宣示车载系统市场主权
查看>>
FreeBSD ports中make可带有的参数(转)
查看>>
Hibernate入门教程
查看>>
Java支付宝扫码支付[新]
查看>>
SpringMVC 拦截器 筛选
查看>>
CronExpression介绍
查看>>
第十八章:MVVM(八)
查看>>
点击表头切换升降序排序方式
查看>>