-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
429 lines (334 loc) · 10.7 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
/**
* Sample React Native App
* https://github.com/facebook/react-native
* @flow
*/
/**
* Created by chx on 2017/7/25.
*/
import React, { Component } from 'react';
import {
StyleSheet,
Text,
View,
TouchableWithoutFeedback,
Image,
AppRegistry
} from 'react-native';
import Jsx from "./Jsx";
import ListJS from "./ListJS";
console.disableYellowBox = true;
console.warn('YellowBox is disabled.');
export default class TestRN extends Component {
constructor(props) {
super(props);
this.pageTestName = 'Hello RN';
//js 基本语法 训练
{
{
let _letTest = 1;
_letTest = '1';
_letTest = true;
_letTest = undefined;
_letTest = null;
_letTest = {'1':'2'};
console.log(_letTest);
_letTest = ['1','2'];
console.log(_letTest);
var _varTest = 'test';
}
// //if else
// let test = 1;
// if(test ==1){
// alert('test =1')
// }else{
// alert('test != 1')
// }
// // switch case
// {
// let test = '2';
// switch(test){
// case 1 :{
// alert('test = 1');
// }break;
// case '2': {
// alert('test = \'2\'');
// }break;
// default:{
// }
// }
// }
// //函数
// testFunciton = function(name, age){
// alert(this.pageTestName);
// alert('name:'+name+'age:'+age);
// }
// testFunciton('圣斗士',18);
// //箭头函数
// let testFuc = (name,age) => {
// alert(this.pageTestName);
// alert('name:'+name+'age:'+age);
//
// this.pageTestName
// }
// testFuc('圣斗士',18);
// // alert(_letTest)
// alert(_varTest);s
}
}
//函数定义
testFunciton = function (name, age){
alert('name:'+name+'age:'+age);
}
//箭头函数
_test = () => {
alert('Call _test function');
}
_testJSX = () => {
let element = <Text>Hello, world!</Text>;
return element;
}
render() {
// // 基本页面布局展示,jsx 语法展示
// let display = false;
//
// return (
// <View style={styles.container}>
// <Text style={styles.welcome}>Welcome to React Native!</Text>
// <Text style={{fontSize: 10,color: 'red'}}></Text>
//
// {/*{*/}
// {/*display? (*/}
// {/*<Text style={styles.instructions}>*/}
// {/*To get started, edit index.ios.js*/}
// {/*</Text>*/}
// {/*) : null*/}
// {/*}*/}
//
//
//
//
// <Text style={styles.instructions}>
// Press Cmd+R to reload,{'\n'}
// Cmd+D or shake for dev menu
// </Text>
// </View>
// )
// //button 按钮
// return (
// <View style={styles.container}>
// <Text style={styles.welcome}>
// Welcome to React Native!
// </Text>
// <Text style={styles.instructions}>
// To get started, edit index.ios.js
// </Text>
// <Text style={styles.instructions}>
// Press Cmd+R to reload,{'\n'}
// Cmd+D or shake for dev menu
// </Text>
//
// <TouchableWithoutFeedback onPress={this._test}>
// <Text>我是一个Button</Text>
// </TouchableWithoutFeedback>
//
// </View>
// )
// //Flex 布局 flexDirection justifyContent alignItems 示例
// return (
// <View style={{flexDirection:'column',backgroundColor:"darkgray",marginTop:40,justifyContent:'flex-start',alignItems:'flex-start',width: 500,height: 500}}>
//
// <View style={ {width:40,height:40,backgroundColor:"darkcyan",margin:5}}>
// <Text style={ {fontSize:16}}>1</Text>
// </View>
//
//
// <View style={ {width:40,height:40,backgroundColor:"darkcyan",margin:5}}>
// <Text style={ {fontSize:16}}>2</Text>
// </View>
//
//
//
// <View style={ {width:40,height:40,backgroundColor:"darkcyan",margin:5}}>
// <Text style={ {fontSize:16}}>3</Text>
// </View>
//
//
// <View style={ {width:40,height:40,backgroundColor:"darkcyan",margin:5}}>
// <Text style={ {fontSize:16}}>4</Text>
// </View>
// </View>
// )
// //Flex 布局 flex = 0 1 2 3 不同效果
// return (
// <View style={ {flexDirection:'row',backgroundColor:"darkgray",marginTop:20,justifyContent:'center',alignItems:'center'}}>
//
//
// <View style={ {backgroundColor:"darkcyan",margin:5,flex:1}}>
// <Text style={ {fontSize:16}}>11111111111</Text>
// </View>
//
//
// <View style={ {backgroundColor:"darkcyan",margin:5,flex:2}}>
// <Text style={ {fontSize:16}}>2</Text>
// </View>
// </View>
// )
// //Flex布局 - 常用布局 cell 图片 文本 箭头
// return (
// <View style={styles_cell.container}>
//
//
// <Image style={styles_cell.leftImg} source={require('./img/iOS_boy.jpg')}></Image>
//
//
// <Text style={styles_cell.text}>只要努力,简单的Text也能发光发热--Text</Text>
//
//
// <Image style={styles_cell.rightImg} source={require('./img/arrow_list_common_right.png')}></Image>
// </View>
// )
// //Flex布局 - 常用布局 cell 复杂布局 图片 名字 简介 时间 文本
// return (
// <View style={styles_cell_complex.container}>
//
// {/*左边Image*/}
// <Image style={styles_cell_complex.leftImg} source={require('./img/iOS_boy.jpg')}></Image>
//
// {/*right view*/}
// <View style={styles_cell_complex.rightView}>
//
// {/*上部info view*/}
// <View style={styles_cell_complex.infoView}>
// <View style={styles_cell_complex.textView}>
// <Text style={styles_cell_complex.name}>我是一个Text</Text>
// <Text style={styles_cell_complex.desc}>我是一个有追求的显示文本的Text</Text>
// </View>
//
// <Text style={styles_cell_complex.date}>2018年06月27日</Text>
// </View>
//
// <Image style={styles_cell_complex.img} source={require('./img/iOS_panda.jpg')}></Image>
//
// <Text style={styles_cell_complex.content}>一个用于显示文本的React组件,并且它也支持嵌套、样式,以及触摸处理。在下面的例子里,嵌套的标题和正文文字会继承来自styles.baseText的fontFamily字体样式,不过标题上还附加了它自己额外的样式。标题和文本会在顶部依次堆叠,并且被代码中内嵌的换行符分隔开。\n我是一个有追求的Text,自身有 numberOfLines onLayout onPress 等函数</Text>
// </View>
//
// </View>
// )
//JSX 基本语法-----
return (
<View style={{flex: 1}}>
{this._testJSX()}
</View>
)
}
}
const styles_cell_complex = StyleSheet.create({
container: {
backgroundColor: 'yellow',
flexDirection: 'row',
marginTop: 50,
},
leftImg: {
marginLeft: 10,
marginTop: 15,
width: 30,
height: 30,
},
rightView: {
marginTop: 15,
marginLeft: 10,
marginRight: 15,
flex: 1,
flexDirection: 'column',
alignItems: 'flex-start',
backgroundColor: 'blue',
},
infoView: {
flexDirection: 'row',
backgroundColor: 'green',
},
textView: {
flex: 1,
flexDirection: 'column',
backgroundColor: 'blanchedalmond',
},
name: {
fontSize: 12,
color: 'black',
},
desc: {
fontSize: 10,
color: 'red',
marginTop: 15,
},
date: {
fontSize: 12,
color: 'red',
},
img: {
width: 200,
height: 200,
alignSelf: 'center',
marginTop: 20,
},
content: {
marginTop: 10,
marginBottom: 10,
fontSize: 12,
color: 'black',
backgroundColor: 'green',
},
})
const styles_cell = StyleSheet.create({
container: {
backgroundColor: 'yellow',
flexDirection: 'row',
alignItems: 'center',
marginTop: 50,
},
leftImg: {
marginLeft: 15,
width: 110,
height: 110,
},
text: {
flex: 1,
marginLeft: 10,
fontSize: 12,
color: 'black',
backgroundColor: 'red',
},
rightImg: {
marginRight: 15,
width: 15,
height: 15,
backgroundColor: 'blue',
},
})
const styles = StyleSheet.create({
container: {
flex: 1,
justifyContent: 'center',
alignItems: 'center',
backgroundColor: '#F5FCFF',
},
welcome: {
fontSize: 20,
textAlign: 'center',
// margin: 10,
backgroundColor: 'red',
},
instructions: {
marginTop: 30,
textAlign: 'center',
color: '#333333',
marginBottom: 5,
backgroundColor: 'yellow',
},
});
AppRegistry.registerComponent('Hello', () => TestRN);
// //打开该注释,展示 state的使用
// AppRegistry.registerComponent('Hello', () => Jsx);
// //打开该注释,展示 列表 FlatList的使用
// AppRegistry.registerComponent('Hello', () => ListJS);