Learn the Basics - RN2

使用Image

1. 引用

import { Image } from 'react-native';

2. 使用

    format:

   

例如:

'https://upload.wikimedia.org/wikipedia/commons/d/de/Bananavarieties.jpg'}}
            style={{width: 193, height: 110}}/>

 

源代码:

App.js

import React from 'react';
import { StyleSheet, Text, View, Image } from 'react-native';

export default class App extends React.Component {
  render() {
    return (
      
        Open up App.js to start working on your app!
        'https://upload.wikimedia.org/wikipedia/commons/d/de/Bananavarieties.jpg'}}
            style={{width: 193, height: 110}}/>
      
    );
  }
}

const styles = StyleSheet.create({
  container: {
    flex: 1,
    backgroundColor: '#fff',
    alignItems: 'center',
    justifyContent: 'center',
  },
});

 

Reference:

1. Learn the Basics - v0.59

 

你可能感兴趣的:(Learn the Basics - RN2)