Skip to main content

React Native ListView

React Native ListView is a view component which contains the list of items and displays in a vertical scrollable list. The minimum API to create list view is ListView.DataSource. It populates a simple array of data blobs, and instantiate a ListView component with data source and a renderRow callback. The renderRow takes a blob from data array and returns a renderable component.

Note: The ListView component has deprecated. To implement the list component use new list components FlatList or SectionList.

React Native ListView Example 1

Let's create an example of ListView component. In this example, we create a data source, and fill it with an array of data blobs. Create a ListView component using that array as its data source, and pass it in its renderRow callback. The renderRow is a function which returns a component which renders the row.
  1. import React, { Component } from 'react'  
  2. import { Text, ListView, StyleSheet } from 'react-native'  
  3.   
  4. export default class MyListComponent extends Component {  
  5.     constructor() {  
  6.         super();  
  7.         const ds = new ListView.DataSource({rowHasChanged: (r1, r2) => r1 !== r2});  
  8.         this.state = {  
  9.             dataSource: ds.cloneWithRows(['Android','iOS''Java','Php''Hadoop',  
  10.                 'Sap''Python','Ajax''C++',  
  11.                 'Ruby''Rails','.Net''Perl']),  
  12.         };  
  13.     }  
  14.   
  15.     render() {  
  16.         return (  
  17.             <ListView  
  18.                 dataSource={this.state.dataSource}  
  19.                 renderRow={  
  20.                     (rowData) =>  
  21.                         <Text style={{fontSize: 20}}>{rowData}</Text>}  
  22.             />  
  23.         );  
  24.     }  
  25. }  

Output:

React Native ListView
In the above code, we create an instance of ListViewDataSource in the constructor. The ListViewDataSource is a parameter and accept an argument which contain any of these four:
  • getRowData(dataBlob, sectionID, rowID)
  • getSectionHeaderData(dataBlob, sectionID)
  • rowHasChanged(previousRowData, nextRowData)
  • sectionHeaderHasChanged(previousSectionData, nextSectionData)

Add separation and perform action on ListView items

Separation is added to provide a separate block and for better display of list items. The props renderSeparator is used to add separator among the items (data) of ListView.
Implement onPress props over Text to perform an action on clicking the list items. Here, we generate an alert message and display the list items on which a user click.
  1. import React from 'react';  
  2. import { View, ListView, StyleSheet, Text,Alert} from 'react-native';  
  3.   
  4. class ListViewDemo extends React.Component {  
  5.     constructor(props) {  
  6.         super(props);  
  7.   
  8.         const ds = new ListView.DataSource({rowHasChanged: (r1, r2) => r1 !== r2});  
  9.         this.state = {  
  10.             dataSource: ds.cloneWithRows([ "Android",  
  11.                 "iOS","Java","Swift",  
  12.                 "Php","Hadoop","Sap",  
  13.                 "Python","Ajax""C++",  
  14.                 "Ruby""Rails",".Net",  
  15.                 "Perl",  
  16.             ])  
  17.         };  
  18.     }  
  19.     //handling onPress action  
  20.     getListViewItem = (rowData) => {  
  21.         Alert.alert(rowData);  
  22.     }  
  23.     render() {  
  24.         return (  
  25.                 <ListView  
  26.                     style={styles.container}  
  27.                     dataSource={this.state.dataSource}  
  28.                     renderRow={(rowData) =>  
  29.                        <Text style={styles.rowViewContainer}  
  30.                              onPress={this.getListViewItem.bind(this, rowData)}>{rowData}  
  31.                        </Text>  
  32.                     }  
  33.                     renderSeparator={(sectionId, rowId) =>  
  34.                         <View key={rowId} style={styles.separator} />}//adding separation  
  35.                 />  
  36.         );  
  37.     }  
  38. }  
  39.   
  40. const styles = StyleSheet.create({  
  41.     container: {  
  42.         flex: 1,  
  43.         backgroundColor: "#e5e5e5"  
  44.     },  
  45.     separator: {  
  46.         height: 0.5, width: "100%", backgroundColor: "#000"  
  47.     },  
  48.     rowViewContainer: {  
  49.         flex: 1,  
  50.         paddingRight: 15,  
  51.         paddingTop: 13,  
  52.         paddingBottom: 13,  
  53.         borderBottomWidth: 0.5,  
  54.         borderColor: '#c9c9c9',  
  55.         flexDirection: 'row',  
  56.         alignItems: 'center',  
  57.         fontSize: 20,  
  58.         marginLeft: 10,  
  59.     },  
  60. });  
  61.   
  62. export default ListViewDemo;  
Output:
React Native ListView React Native ListView

Comments

  1. Really Impressive.
    Read all the details with the sample code that you mentioned in the blog regarding list view in React Native. After checking all the data I believe that nothing could be more expressive then this blog.
    I was searching for the best react native development company and got your blog.
    Thanks for sharing for such a great blog.

    ReplyDelete

Post a Comment

Thank You.

Popular Posts

React Native - Text Input

In this chapter, we will show you how to work with  TextInput  elements in React Native. The Home component will import and render inputs. App.js import React from 'react' ; import Inputs from './inputs.js' const App = () => { return ( < Inputs /> ) } export default App Inputs We will define the initial state. After defining the initial state, we will create the  handleEmail  and the  handlePassword  functions. These functions are used for updating state. The  login()  function will just alert the current value of the state. We will also add some other properties to text inputs to disable auto capitalisation, remove the bottom border on Android devices and set a placeholder. inputs.js import React , { Component } from 'react' import { View , Text , TouchableOpacity , TextInput , StyleSheet } from 'react-native' class Inputs extends Component { state = { ...

An introduction to Size Classes for Xcode 8

Introduction to Size Classes for Xcode In iOS 8, Apple introduced  size classes , a way to describe any device in any orientation. Size classes rely heavily on auto layout. Until iOS 8, you could escape auto layout. IN iOS8, Apple changed several UIKit classes to depend on size classes. Modal views, popovers, split views, and image assets directly use size classes to determine how to display an image. Identical code to present a popover on an iPad  causes a iPhone to present a modal view. Different Size Classes There are two sizes for size classes:  compact , and  regular . Sometime you’ll hear about any.  Any  is the generic size that works with anything. The default Xcode layout, is  width:any height:any . This layout is for all cases. The Horizontal and vertical dimensions are called  traits , and can be accessed in code from an instance of  UITraitCollection . The  compact  size descr...

What are the Alternatives of device UDID in iOS? - iOS7 / iOS 6 / iOS 5 – Get Device Unique Identifier UDID

Get Device Unique Identifier UDID Following code will help you to get the unique-device-identifier known as UDID. No matter what iOS user is using, you can get the UDID of the current iOS device by following code. - ( NSString *)UDID { NSString *uuidString = nil ; // get os version NSUInteger currentOSVersion = [[[[[UIDevice currentDevice ] systemVersion ] componentsSeparatedByString: @" . " ] objectAtIndex: 0 ] integerValue ]; if (currentOSVersion <= 5 ) { if ([[ NSUserDefaults standardUserDefaults ] valueForKey: @" udid " ]) { uuidString = [[ NSUserDefaults standardDefaults ] valueForKey: @" udid " ]; } else { CFUUIDRef uuidRef = CFUUIDCreate ( kCFAllocatorDefault ); uuidString = ( NSString *) CFBridgingRelease ( CFUUIDCreateString ( NULL ,uuidRef)); CFRelease (uuidRef); [[ NSUserDefaults standardUserDefaults ] setObject: uuidString ForKey: @" udid " ]; [[ NSUserDefaults standardUserDefaults ] synchro...