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

How I Reduced the Size of My React Native App by 85%

How and Why You Should Do It I borrowed 25$ from my friend to start a Play Store Developer account to put up my first app. I had already created the app, created the assets and published it in the store. Nobody wants to download a todo list app that costs 25mb of bandwidth and another 25 MB of storage space. So today I am going to share with you how I reduced the size of Tet from 25 MB to around 3.5 MB. Size Matters Like any beginner, I wrote my app using Expo, the awesome React Native platform that makes creating native apps a breeze. There is no native setup, you write javascript and Expo builds the binaries for you. I love everything about Expo except the size of the binaries. Each binary weighs around 25 MB regardless of your app. So the first thing I did was to migrate my existing Expo app to React Native. Migrating to React Native react-native init  a new project with the same name Copy the  source  files over from Expo project Install all de...

How to recover data of your Android KeyStore?

These methods can save you by recovering Key Alias and Key Password and KeyStore Password. This dialog becomes trouble to you? You should always keep the keystore file safe as you will not be able to update your previously uploaded APKs on PlayStore. It always need same keystore file for every version releases. But it’s even worse when you have KeyStore file and you forget any credentials shown in above box. But Good thing is you can recover them with certain tricks [Yes, there are always ways]. So let’s get straight to those ways. 1. Check your log files → For  windows  users, Go to windows file explorer C://Users/your PC name/.AndroidStudio1.4 ( your android studio version )\system\log\idea.log.1 ( or any old log number ) Open your log file in Notepad++ or Any text editor, and search for: android.injected.signing and if you are lucky enough then you will start seeing these. Pandroid.injected.signing.store.file = This is  file path where t...

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 = { ...