본문 바로가기

컴퓨터

003 Props 소품

Props

대부분의 components 는 생성 시 서로 다른예를 들어 기본 React Native 구성 요소 중 하나가 Image입니다. 매개 변수를 사용하여 사용자 정의할 수 있습니다. 이러한 생성 매개변수를 props 라고 합니다.


예를 들어 기본적인 React Native components 중 하나가 image 입니다.

import React, { Component } from 'react';

import { AppRegistry, Image } from 'react-native';


export default class Bananas extends Component {

  render() {

    let pic = {

      uri: 'https://upload.wikimedia.org/wikipedia/commons/d/de/Bananavarieties.jpg'

    };

    return (

      <Image source={pic} style={{width: 193, height: 110}}/>

    );

  }

}


// skip this line if using Create React Native App

AppRegistry.registerComponent('AwesomeProject', () => Bananas);

'컴퓨터' 카테고리의 다른 글

mongojs 모듈  (0) 2019.03.30
https 프로토콜 사용하기  (0) 2019.03.19
002 Learn the Basics 기초 배우기  (0) 2019.03.18
gethostbyaddr  (0) 2019.03.17
hostent  (0) 2019.03.16