How to add a click listener in FlatList with React Native?

Sometimes, we want to add a click listener in FlatList with React Native.

In this article, we’ll look at how to add a click listener in FlatList with React Native.

How to add a click listener in FlatList with React Native?

To add a click listener in FlatList with React Native, we can set the onPress prop to a function.

For instance, we write:

import * as React from 'react';
import { FlatList, Text, View, Dimensions } from 'react-native';
import Constants from 'expo-constants';
import { Card } from 'react-native-paper';

const flatListItems = Array(200)
  .fill()
  .map((_, i) => ({ title: i, id: i }));

const Item = (item) => {
  const { title } = item;
  return (
    <View
      style={{
        backgroundColor: '#f9c2ff',
        padding: 20,
        marginVertical: 8,
        marginHorizontal: 16,
      }}>
      <Text onPress={() => console.log(item)}>{title}</Text>
    </View>
  );
};

export default function App() {
  const renderItem = ({ item }) => <Item title={item.title} />;
  const keyExtractor = (item) => item.id;

  return (
    <View>
      <FlatList
        style={{ height: 300 }}
        data={flatListItems}
        renderItem={renderItem}
        keyExtractor={keyExtractor}
      />
    </View>
  );
}

to set onPress to a function that logs the item in the Item component.

As a result, when we press on the text, we see the item object logged.

Conclusion

To add a click listener in FlatList with React Native, we can set the onPress prop to a function.