Pull to Refresh is a common functionality which is provided in both Android and iOS. The same could be achieved in FlatList in React native using onRefresh
and refreshing
props.
refreshing
prop is used to display loader. Set it to true to show the circular loader and false to hide it.
Use onRefresh
to run the logic for refreshing the list. Pass a function to fetch data from server by making an async call or use any other logic to refresh your data. Also the value of refreshing
prop is derived from this.
When the list is pulled, onRefresh
is called. The first statement in this function should be to set refreshing
prop to true. Then make async call to fetch new data. After receiving the data you can set refreshing
prop to false and update data
array.
Code Example
import React, { useState } from "react"; import { FlatList, SafeAreaView, StyleSheet, Text, View, StatusBar } from "react-native"; const SUPERHERO_DATA = [ { id: '1', title: 'Ironman', }, { id: '2', title: 'Thor', }, { id: '3', title: 'Captain America', }, { id: '4', title: 'Hulk', }, { id: '5', title: 'Hawkeye', }, { id: '6', title: 'Spiderman', }, { id: '7', title: 'Antman', }, ]; const App = () => { const [isRefreshing, setIsRefreshing] = React.useState(false); const renderItem = ({ item, index, separators }) => ( <View style={styles.item}> <Text>{item.title}</Text> </View> ) const refreshList = () => { setIsRefreshing(true) // Do a network call here to // fetch updated data setTimeout(() => setIsRefreshing(false), 3000) } return ( <SafeAreaView style={styles.container}> <FlatList data={SUPERHERO_DATA} renderItem={renderItem} refreshing={isRefreshing} onRefresh={refreshList} /> </SafeAreaView> ); }; const styles = StyleSheet.create({ container: { flex: 1, marginTop: StatusBar.currentHeight || 0, }, item: { backgroundColor: '#fff000', padding: 10, flex:1, margin: 5, }, }); export default App;
The output will look like this –
In this code we have implemented the pull to refresh functionality. Here is the summary –
- Declared a state variable
isRefreshing
to hold the boolean value. It is set to true when refreshing starts and false when ends. By default, we are setting it to false. - Defined a function
refreshList()
which is setting the value ofisRefreshing
variable to true. Then waiting for 3 seconds using timeout and resettingisRefreshing
to false again. - Lastly,
onRefresh
prop is set torefreshList()
function andrefreshing
prop toisRefreshing
variable.
Note: This functionality works in Android and iOS apps only. Not on web page.
Live Demo
Conclusion
In order to implement pull to refresh in React Native, we need to set refreshing
and onRefresh
props of flatlist. Together they display the loader, run logic for new data and later on hide the loader.
Read These Next ⬇️
How to Create a Simple List?
How to Select Single Item from List?
How to Select Multiple Items from List?
How to add Separator between list items?
How to create Multiple columns List?
How to Create Placeholder Message in Empty List?
How to Add Footer to the List?
How to Add Header to the List?
How to create Horizontal List?
How to create Inverted List?
How to create Pull to Refresh in List?
How to create Infinite Loading List?
How to create Section List?
React Native Series
Alert
- Basic Alert
- Dismiss on Clicking Outside
- Input Fields in Alert Dialog – Prompt()
- Dark-Light Theme of Dialog
ActivityIndicator
- Basic Circular Loader
- Change size of Circular Loader
- Show/hide Circular Loader
- Change color of Circular Loader
Button
FlatList
- Simple List
- Single Item Selection from List
- Multiple Item Selection from List
- Adding separator between list items
- Multiple columns List
- Showing Message in Empty List
- Add Footer to the List
- Add Header to the List
- Horizontal List
- Inverted List
- Pull to Refresh in List
- Infinite Loading List
SectionList
ScrollView
- ScrollView
- Stick Single Item at Header
- Stick Multiple Items at Header
- Stick Item at Footer
- Hide Sticky Element on Scroll
Image
- Display Image from remote url
- Display local storage image
- Display Base64 Image
- Display Gif & Webp Images
- Adding Blur to Image
- Displaying loader for Image
- Resizemode for Images
- Setting Default Placeholder Image
- Background Image
Modal
RefreshControl
- RefreshControl
- Change Refresh Loader Color
- Change Refresh Loader Size
- Change Refresh Loader Background Color
- Title under Refresh Loader
- Change color of title under refresh loader
StatusBar
- Get StatusBar Size
- Change StatusBar Background Color
- Display StatusBar icons & text in While Color
- Display StatusBar icons & text in Dark Color
- Hiding StatusBar
- Translucent StatusBar
Switch
Text
- Adding Text
- Bold Text
- Italic Text
- Underline Text
- Selecting Text for copy-paste
- Changing Highlight Color of Text Selection
- Fit text in View box
- Clickable anchors in text
- Truncate Lengthy Text
TextInput
- Simple Input Field
- Auto Capitalize Text in Input Field
- Multiline Input Field
- Hide Cursor in Input Field
- Clear input Field using X
- Clear input Field when focused
- Change Cursor Color in Input Field
- Disable input field
- Icon at the left of Input Field
- Dark-Light Keyboard
- Avoid Overlapping of Keyboard
- Limiting Characters in Input Field
- Numeric Keyboard
- Email Id Keyboard
- Phone number Keyboard
- Url Keyboard
- Placeholder in input field
- Placeholder Color in Input Field
- Password Input Field
- Programmatically select text in Input Field
- Change Text Selection Color in Input Field
- Select Whole text in Input Field on Focus
- Write text from center in input field
- Changing underline color of input field
TouchableWithoutFeedback
TouchableHighlight
TouchableOpacity
Pressable
Appearance
AppState
ToastAndroid
Dimensions
Keyboard