前言
創新互聯建站堅持“要么做到,要么別承諾”的工作理念,服務領域包括:成都網站建設、成都網站制作、企業官網、英文網站、手機端網站、網站推廣等服務,滿足客戶于互聯網時代的濱江網站設計、移動媒體設計的需求,幫助企業找到有效的互聯網解決方案。努力成為您成熟可靠的網絡建設合作伙伴!
本文主要給大家介紹了關于react-native組件中NavigatorIOS和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=這個樣式,否則它里面裝載的組件不會顯示
總結
以上就是這篇文章的全部內容了,希望本文的內容對大家的學習或者工作具有一定的參考學習價值,如果有疑問大家可以留言交流,謝謝大家對創新互聯的支持。
參考
源碼:https://github.com/tomoya92/ITNews-React-Native
當前標題:react-native組件中NavigatorIOS和ListView結合使用的方法
本文URL:http://m.newbst.com/article36/jicppg.html
成都網站建設公司_創新互聯,為您提供營銷型網站建設、網站排名、小程序開發、虛擬主機、響應式網站、外貿建站
聲明:本網站發布的內容(圖片、視頻和文字)以用戶投稿、用戶轉載內容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網站立場,如需處理請聯系客服。電話:028-86922220;郵箱:631063699@qq.com。內容未經允許不得轉載,或轉載時需注明來源: 創新互聯