react-native 구성 요소 에서 NavigatorIOS 와 ListView 를 결합 하여 사용 하 는 방법
본 고 는 주로 react-native 구성 요소 에서 Navigator IOS 와 ListView 를 결합 하여 사용 하 는 것 에 관 한 내용 을 소개 하고 참고 학습 을 제공 합 니 다.다음은 더 이상 할 말 이 없 으 니 상세 한 소 개 를 해 보 겠 습 니 다.
효과
사용 방법
index.ios.js
import React, {Component} from 'react';
import {
AppRegistry,
NavigatorIOS
} from 'react-native';
import NewsList from './components/NewsList';
export default class ITNews extends Component {
render() {
return (
<NavigatorIOS
style=
initialRoute=
/>
);
}
}
NewsList.js
import React, {Component} from 'react';
import {ListView, Text, StyleSheet, TouchableHighlight} from 'react-native';
const ds = new ListView.DataSource({rowHasChanged: (r1, r2) => r1 !== r2});
export default class NewsList extends Component {
constructor(props) {
super(props);
this.state = ({
dataSource: ds.cloneWithRows(['CNodeJS', ' ', ' ', ' ', 'SegmentFault', 'IT ', 'V2EX', ' ', 'W3CPlus']),
});
}
_onPress(rowData) {
console.log(rowData);
}
render() {
return <ListView
style={styles.listView}
dataSource={this.state.dataSource}
renderRow={(rowData) =>
<TouchableHighlight
style={styles.rowStyle}
underlayColor='#008b8b'
onPress={() => this._onPress(rowData)}>
<Text style={styles.rowText}>{rowData}</Text>
</TouchableHighlight>}
/>
}
}
const styles = StyleSheet.create({
listView: {
backgroundColor: '#eee',
},
rowText: {
padding: 10,
fontSize: 18,
backgroundColor: '#FFFFFF'
},
rowStyle: {
flex: 1,
marginBottom: 1,
justifyContent: 'center',
},
});
설명 하 다.NavigationIOS 는 style=이 스타일 을 추가 해 야 합 니 다.그렇지 않 으 면 불 러 온 구성 요소 가 표시 되 지 않 습 니 다.
총결산
이상 은 이 글 의 전체 내용 입 니 다.본 논문 의 내용 이 여러분 의 학습 이나 업무 에 어느 정도 참고 학습 가치 가 있 기 를 바 랍 니 다.궁금 한 점 이 있 으 시 면 댓 글 을 남 겨 주 셔 서 저희 에 대한 지지 에 감 사 드 립 니 다.
레 퍼 런 스