-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathBallsList.js
72 lines (60 loc) · 1.66 KB
/
BallsList.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
import React, {Component} from 'react';
import {ListView, StyleSheet, Text, View,} from 'react-native';
import Ball from './Ball'
import PlatformSpecificBall from './PlatformSpecificBall'
const smileyImage = require('../images/Smiley.png');
const styles = StyleSheet.create({
main: {
alignItems: 'center',
},
list: {
width: 200,
},
title: {
margin: 20,
},
listContainer: {
alignItems: 'center'
},
ball: {
flexDirection: 'row',
alignItems: 'center',
justifyContent: 'flex-start',
},
avatar: {
margin: 10,
width: 50,
height: 50,
borderRadius: 25,
},
name: {
fontSize: 18,
color: '#000',
}
});
export default class BallsList extends Component {
constructor(props) {
super(props);
this.balls = [1, 2, 3].map(i => ({id: i, avatarUrl: smileyImage}));
const ds = new ListView.DataSource({rowHasChanged: (r1, r2) => r1 !== r2});
this.state = {
ds: ds.cloneWithRows(this.balls),
};
}
render() {
return (
<View style={styles.main}>
<Text style={styles.title}>Platform specific components (click me)</Text>
<PlatformSpecificBall/>
<Text style={styles.title}>Common components (click us)</Text>
<ListView
dataSource={this.state.ds}
style={styles.list}
contentContainerStyle={styles.listContainer}
renderRow={(ball) =>
<Ball/>
}/>
</View>
);
}
}