React-Native入门指南

第4篇React-Native布局实战

  1. 前辈教导我们,掌握一门新技术的最快方法是练习。因此,我找了下比较有爱,暖气的界面。当然不是给美团打广告了,只是觉得页面蛮清新的。下面就是要显示的效果:

美团

  1. 第三篇文章基本上对React-Native的布局基本上有个大致的认识,现在开工吧。总体上,该页面分三个部分:(1)我们约会吧及其右边3栏;(21元吃大餐及其底下的4栏;(3)红火来袭的三栏。

一、实现第一部分

  1. 1、首先,我们创建一个项目
  2. 现在我们需要创建一个React-Native的项目,因此可以按照下面的步骤:
  3. 打开终端,开始React-Native开发的旅程吧。
  4. (1)安装命令行工具(已经安装了就不用再安装了):sudo npm install -g react-native-cli
  5. (2)创建一个空项目:react-native init HelloWorld
  6. (3)找到创建的HelloWorld项目,双击HelloWorld.xcodeproj即可在xcode中打开项目。xcodeprojxcode的项目文件。
  7. (4)在xcode中,使用快捷键cmd + R即可启动项目。
  8. 2、清除其余多余的代码,剩下的代码如下:
  9. /**
  10. * Sample React Native App
  11. * https://github.com/facebook/react-native
  12. */
  13. 'use strict';
  14. var React = require('react-native');
  15. var {
  16. AppRegistry,
  17. StyleSheet,
  18. Text,
  19. View,
  20. } = React;
  21. var HelloWorld = React.createClass({
  22. render: function() {
  23. return (
  24. <View></View>
  25. );
  26. }
  27. });
  28. var styles = StyleSheet.create({
  29. });
  30. AppRegistry.registerComponent('HelloWorld', () => HelloWorld);
  31. 3、此时,除了闪屏外,看到应该是空白的页面。开工,分析页面:
  32. 1)大致有4个板块
  33. 2)先是左右两栏(1/32/3);后是上下两栏(1/2)。我们先用View组件布局。

美团

  1. 4、完成初步布局
  2. 看如下代码,应该很清楚了,View里面嵌入并列的两栏。

美团

  1. 实现效果如下:

美团

  1. 5、添加内部图片和文字
  2. 其实做这种布局,还是有很多的细节,粗糙的效果如下,这块代码暂时不贴了,最后一并贴出来:

美团

二、按照第一部分原理,完成整个页面

  1. 完成的效果如下:

美团

  1. 整个代码如下:
  2. /**
  3. * Sample React Native App
  4. * https://github.com/facebook/react-native
  5. */
  6. 'use strict';
  7. var React = require('react-native');
  8. var {
  9. AppRegistry,
  10. StyleSheet,
  11. Text,
  12. View,
  13. Image,
  14. } = React;
  15. var HelloWorld = React.createClass({
  16. render: function() {
  17. return (
  18. <View style={{}}>
  19. <View style={[styles.height160, styles.row,]}>
  20. <View style={[styles.height160, styles.part_1_left,]}>
  21. <Text style={[styles.font14, styles.marTop18, styles.marLeft10, styles.green]}>我们约吧</Text>
  22. <Text style={[styles.font10, styles.marTop14, styles.marLeft10]}>恋爱家人好朋友</Text>
  23. <Image style={[styles.yue]} source={{uri: 'http://p0.meituan.net/mmc/fe4d2e89827aa829e12e2557ded363a112289.png'}}></Image>
  24. </View>
  25. <View style={[styles.height160, styles.part_1_right,]}>
  26. <View style={[styles.row, {flex:1}]}>
  27. <View style={{flex:1}}>
  28. <Text style={[styles.font14, {marginLeft:30}, styles.red]}>超低价值</Text>
  29. <Text style={[styles.font14, {fontSize:12, marginTop:14, marginLeft:30,color: 'black'}]}>十元惠生活</Text>
  30. </View>
  31. <View style={[{flex:1}, {marginTop:-13}]}>
  32. <Image style={[styles.hanbao]} source={{uri: 'http://p0.meituan.net/mmc/a06d0c5c0a972e784345b2d648b034ec9710.jpg'}}></Image>
  33. </View>
  34. </View>
  35. <View style={[{flex:1, flexDirection: 'row',borderTopWidth:0.5, borderColor:'#DDD8CE'}]}>
  36. <View style={{flex:1, borderRightWidth:1, borderColor:'#DDD8CE',}}>
  37. <Text style={{color:'#F742AB', marginLeft:5,fontWeight:'bold', fontSize:15, marginTop:8}}>聚餐宴请</Text>
  38. <Text style={{fontSize:12,marginTop:4, marginLeft:5}}>朋友家人常聚聚</Text>
  39. <Image style={{height:25,width:25, alignSelf: 'center'}} source={{uri: 'http://p1.meituan.net/mmc/08615b8ae15d03c44cc5eb9bda381cb212714.png'}}></Image>
  40. </View>
  41. <View style={{flex:1,}}>
  42. <Text style={[styles.font14,{color:'#FF8601', marginTop:8, marginLeft:5}]}>名店抢购</Text>
  43. <Text style={[{marginLeft:5, fontSize:12,marginTop:4,}]}>还有</Text>
  44. <Text style={[{marginLeft:5, fontSize:12,marginTop:4,}]}>12:06:12分</Text>
  45. </View>
  46. </View>
  47. </View>
  48. </View>
  49. <View>
  50. <View style={{borderBottomWidth:1,borderTopWidth:1, borderColor:'#DDD8CE', marginTop:40,height:65, flexDirection: 'row',paddingTop:10}}>
  51. <View style={[{flex:1}]}>
  52. <Text style={{fontSize:17, color:'#FF7F60', fontWeight:'900', marginLeft:7}}>一元吃大餐</Text>
  53. <Text style={{marginLeft:7, fontSize:12, marginTop:3}}>新用户专享</Text>
  54. </View>
  55. <View style={{flex:1}}>
  56. <Image style={{height:50, width:120}} source={{uri:'http://p1.meituan.net/280.0/groupop/7f8208b653aa51d2175848168c28aa0b23269.jpg'}}></Image>
  57. </View>
  58. </View>
  59. </View>
  60. <View>
  61. <View style={{flexDirection: 'row',}}>
  62. <View style={[styles.row, {borderColor:'#DDD8CE', borderRightWidth:1}]}>
  63. <View style={{flex:1,}}>
  64. <Text style={{fontSize:17, color:'#EA6644', fontWeight:'bold', marginLeft:7}}>撸串节狂欢</Text>
  65. <Text style={{fontSize:12, color:'#97979A', marginTop:3, marginLeft:7}}>烧烤6.6元起</Text>
  66. </View>
  67. <View style={{flex:1}}>
  68. <Image style={{width:60,height:55}} source={{uri: 'http://p1.meituan.net/280.0/groupop/fd8484743cbeb9c751a00e07573c3df319183.png'}}></Image>
  69. </View>
  70. </View>
  71. <View style={styles.row}>
  72. <View style={{flex:1}}>
  73. <Text style={{fontSize:17, color:'#EA6644', fontWeight:'bold', marginLeft:7}}>毕业旅行</Text>
  74. <Text style={{fontSize:12, color:'#97979A', marginTop:3, marginLeft:7}}>选好酒店才安心</Text>
  75. </View>
  76. <View style={{flex:1}}>
  77. <Image style={{width:60,height:55}} source={{uri: 'http://p0.meituan.net/280.0/groupop/ba4422451254f23e117dedb4c6c865fc10596.jpg'}}></Image>
  78. </View>
  79. </View>
  80. </View>
  81. <View style={{flexDirection: 'row',}}>
  82. <View style={[styles.row, {borderColor:'#DDD8CE', borderRightWidth:1, marginLeft:1},]}>
  83. <View style={{flex:1}}>
  84. <Text style={{fontSize:17, color:'#EA6644', fontWeight:'bold', marginLeft:7}}>0元餐来袭</Text>
  85. <Text style={{fontSize:12, color:'#97979A', marginTop:3, marginLeft:7}}>免费吃喝玩乐购</Text>
  86. </View>
  87. <View style={{flex:1}}>
  88. <Image style={{width:60,height:55}} source={{uri: 'http://p0.meituan.net/280.0/groupop/6bf3e31d75559df76d50b2d18630a7c726908.png'}}></Image>
  89. </View>
  90. </View>
  91. <View style={styles.row}>
  92. <View style={{flex:1}}>
  93. <Text style={{fontSize:17, color:'#EA6644', fontWeight:'bold', marginLeft:7}}>热门团购</Text>
  94. <Text style={{fontSize:12, color:'#97979A', marginTop:3, marginLeft:7}}>大家都在买什么</Text>
  95. </View>
  96. <View style={{flex:1}}>
  97. <Image style={{width:60,height:55}} source={{uri: 'http://p1.meituan.net/mmc/a616a48152a895ddb34ca45bd97bbc9d13050.png'}}></Image>
  98. </View>
  99. </View>
  100. </View>
  101. </View>
  102. </View>
  103. );
  104. }
  105. });
  106. var styles = StyleSheet.create({
  107. row:{
  108. flexDirection: 'row',
  109. paddingTop:20
  110. },
  111. marTop18:{
  112. marginTop:18,
  113. },
  114. marTop14:{
  115. marginTop:14,
  116. },
  117. font14:{
  118. fontSize:14,
  119. },
  120. font10:{
  121. fontSize:12,
  122. },
  123. height160:{
  124. height: 160
  125. },
  126. yue:{
  127. height:80,
  128. },
  129. green:{
  130. color:'#55A44B',
  131. fontWeight: '900'
  132. },
  133. red:{
  134. color: '#FF3F0D',
  135. fontWeight: '900'
  136. },
  137. marLeft10:{
  138. marginLeft:10,
  139. },
  140. part_1_left:{
  141. flex: 1,
  142. borderColor: '#DCD7CD',
  143. borderRightWidth: 0.5,
  144. borderBottomWidth: 1,
  145. },
  146. part_1_right:{
  147. flex:2,
  148. borderColor: '#DCD7CD',
  149. borderBottomWidth: 1,
  150. },
  151. hanbao:{
  152. height:55,
  153. width:55
  154. }
  155. });
  156. AppRegistry.registerComponent('HelloWorld', () => HelloWorld);