INNER CODE UNIT · JavaScript
style
catalinmiron/react-native-dribbble-app · app/Player.js:73
style={styles.playerAvatar} />
<Text style={styles.playerUsername}>{this.props.player.username}</Text>
<Text style={styles.playerName}>{this.props.player.name}</Text>
<View style={styles.playerDetailsRow}>
<View style={styles.playerCounter}>
<Icon name="users" size={18} color="#fff"/>
<Text style={styles.playerCounterValue}> {this.props.player.followers_count} </Text>
</View>
<View style={styles.playerCounter}>
<Icon name="camera-retro" size={18} color="#fff"/>
<Text style={styles.playerCounterValue}> {this.props.player.shots_count} </Text>
</View>
<View style={styles.playerCounter}>
<Icon name="heart-o" size={18} color="#fff"/>
<Text style={styles.playerCounterValue}> {this.props.player.likes_count} </Text>
</View>
</View>
</View>