博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[React Native] Reusable components with required propType
阅读量:6472 次
发布时间:2019-06-23

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

In this React Native lesson, we will be creating a reusable Badge component. The component will also make use of propTypes to validate that its required data is being passed in when it is used.

 

We are going to build Badge component which will just show the user image. This componet will be reused into Profile, Bio and Note component as well.

 

import React, {Component} from 'react';import {Text, View, StyleSheet, Image} from 'react-native';var styles = StyleSheet.create({    container: {        backgroundColor: '#48BBEC',        paddingBottom: 10    },    name: {        alignSelf: 'center',        fontSize: 21,        marginTop: 10,        marginBottom: 5,        color: 'white'    },    handle: {        alignSelf: 'center',        fontSize: 16,        color: 'white'    },    image: {        height: 125,        width: 125,        borderRadius: 65,        marginTop: 10,        alignSelf: 'center'    }});class Badge extends React.Component {    render(){        return (            
{
this.props.userInfo.name}
{
this.props.userInfo.login}
) }}/** * Make sure when when user the Badge component, the userInfo object is there * @type {
{userInfo: *}} */Badge.propTypes = { userInfo: React.PropTypes.object.isRequired};module.exports=Badge;

 

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

你可能感兴趣的文章
poj2378
查看>>
【译】SQL Server误区30日谈-Day12-TempDB的文件数和需要和CPU数目保持一致
查看>>
不为技术而技术:大型网站架构演化解析
查看>>
Java文件清单列表
查看>>
js url传值中文乱码之解决之道
查看>>
Atitit.获取某个服务 网络邻居列表 解决方案
查看>>
Trusty TEE
查看>>
[LeetCode] Reverse String 翻转字符串
查看>>
学习iOS【3】数组、词典和集合
查看>>
Hessian 原理分析--转
查看>>
转: 基于netty+ protobuf +spring + hibernate + jgroups开发的游戏服务端
查看>>
easyui传入map的数据前台展示出tree格式数据
查看>>
悲观的思考,乐观的生活.我们既需要思考的深度,也需要生活的温度!
查看>>
java.math.BigDecimal
查看>>
Vitamio中文API文档(4)—— VitamioInstaller
查看>>
河内之塔
查看>>
图像处理之基础---内窥镜医学图像增强
查看>>
yii框架常用url地址
查看>>
python3.4学习笔记(十六) windows下面安装easy_install和pip教程
查看>>
MyGUI 解析
查看>>