ReactNative Demo - ImageVIew 使用

import React, { Component } from 'react';
import {
  AppRegistry,
  StyleSheet,
  Text,
  View,
  Image,
  DrawerLayoutAndroid,
  ListView,
} from 'react-native';



class AwesomeProject extends Component {

  
  render() {
    return (
    
    Inside
    

   

        );

 


  }
}

const styles = StyleSheet.create({
  container: {
    flex: 1,
    justifyContent: 'center',
    alignItems: 'center',
    backgroundColor: '#F5FCFF',
  },
  welcome: {
    fontSize: 20,
    textAlign: 'center',
    margin: 10,
  },
   elements:{
    alignItems: "flex-start",
    color:"#000000",
  },
  instructions: {
    textAlign: 'center',
    color: '#333333',
    marginBottom: 5,
  },
  base: {
    width: 38,
    height: 38,
  },
  background: {
    backgroundColor: '#ff0000',
  },
  active: {
    borderWidth: 2,
    borderColor: '#00ffff',
  },
});

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

转载请注明出处:http://www.jianshu.com/u/c864df301e25

你可能感兴趣的:(ReactNative Demo - ImageVIew 使用)