react-native 学习之Image篇

Posted 马在路上

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了react-native 学习之Image篇相关的知识,希望对你有一定的参考价值。

/**
 * Sample React Native App
 * https://github.com/facebook/react-native
 */
‘use strict‘;
import React, {
  AppRegistry,
  Component,
  StyleSheet,
  Text,
  View,
  Image
} from ‘react-native‘;

class machaoProject extends Component {
  render() {
    return (
      <View style={styles.container}>
        <View style={ styles.topBgView}>
       
       
        <View style={styles.unitView} >
            <Image 
                source={require(‘./Images/001.png‘)}
                style={styles.imageStyle}
                />
             <Text style = {styles.textStyle}>
             美食
             </Text>
        </View>
        
        <View style={styles.unitView} >
            <Image 
                source={require(‘./Images/002.png‘)}
                style={styles.imageStyle}
                />
             <Text style = {styles.textStyle}>
             电影
             </Text>
        </View>
        
        <View style={styles.unitView} >
            <Image 
                source={require(‘./Images/003.png‘)}
                style={styles.imageStyle}
                />
             <Text style = {styles.textStyle}>
             酒店
             </Text>
        </View>
        
        <View style={styles.unitView} >
            <Image 
                source={require(‘./Images/004.png‘)}
                style={styles.imageStyle}
                />
             <Text style = {styles.textStyle}>
             KTV
             </Text>
        </View>
        </View>
        
        
        <View style = {styles.topBgView}> 
        
        <View style={styles.unitView} >
            <Image 
                source={require(‘./Images/005.png‘)}
                style={styles.imageStyle}
                />
             <Text style = {styles.textStyle}>
             外卖
             </Text>
        </View>
        
         <View style={styles.unitView} >
            <Image 
                source={require(‘./Images/006.png‘)}
                style={styles.imageStyle}
                />
             <Text style = {styles.textStyle}>
             优惠买单
             </Text>
        </View>
        
         <View style={styles.unitView} >
            <Image 
                source={require(‘./Images/007.png‘)}
                style={styles.imageStyle}
                />
             <Text style = {styles.textStyle}>
             你说呢
             </Text>
        </View>
        
        </View>
     
     
        
        
      </View>
    );
  }
}

const styles = StyleSheet.create({
  container: {
    marginLeft: 5,
    marginTop: 20,
    marginRight: 5,
  },
  topBgView: {
    flexDirection: ‘row‘,
    backgroundColor: ‘red‘,
    marginTop: 10,
  },
  unitView: {
      width: 70 ,  
  },
  imageStyle: {
     alignSelf: ‘center‘,
     width: 45,
     height: 45, 
  },
  textStyle: {
      marginTop: 0,
      textAlign: ‘center‘,
      fontSize: 15,
      color: ‘#555555‘
  }
});

AppRegistry.registerComponent(‘machaoProject‘, () => machaoProject);

技术分享

以上是关于react-native 学习之Image篇的主要内容,如果未能解决你的问题,请参考以下文章

react-native学习之入门app

React Native学习之自定义Navigator

python 学习之 基础篇三 流程控制

Android学习之——优化篇

Python学习之函数篇

licode学习之编译篇--1