Description
Description
Standard usage of FlatList with pull to refresh functionality displays correctly the first few times, but something causes it to eventually no longer be present.
I've been trying to determine what's causing it. It's not just refreshing === true
as is described here:
#35779
To reproduce it however is easy: during development, just reload the bundle by pressing "R" from the terminal, and RefreshControl
indicators will be gone.
This obviously happens under other real circumstances as well:
In my application, one way to trigger it is by toggling whether it renders from a top level application Provider
. My app will determine whether to render the Admin panel from the Provider file or the main App. When you go to the Admin panel and back, refresh controls are now gone. But if you move the conditional from Provider.js
to App.js
, the issue doesn't happen.
Lastly, if you kill the app, and re-open it, it will be there again. Once FlatList determines not to display it, it won't be displayed again for the remainder of the session, which is what leads me to think there's some native caching problem going on.
Pull to Refresh functionality seems to need a revisit in the new Fabric / new Architecture world. Color props also don't work.
React Native Version
0.71.7
Output of npx react-native info
System:
OS: macOS 13.3.1
CPU: (12) x64 Intel(R) Core(TM) i9-8950HK CPU @ 2.90GHz
Memory: 340.67 MB / 32.00 GB
Shell: 3.2.57 - /bin/bash
Binaries:
Node: 18.9.0 - ~/.nvm/versions/node/v18.9.0/bin/node
Yarn: 3.5.0 - ~/.nvm/versions/node/v18.9.0/bin/yarn
npm: 8.19.1 - ~/.nvm/versions/node/v18.9.0/bin/npm
Watchman: 2022.10.03.00 - /usr/local/bin/watchman
Managers:
CocoaPods: 1.12.0 - /Users/jamesgillmore/.rvm/gems/ruby-3.1.2/bin/pod
SDKs:
iOS SDK:
Platforms: DriverKit 22.4, iOS 16.4, macOS 13.3, tvOS 16.4, watchOS 9.4
Android SDK: Not Found
IDEs:
Android Studio: Not Found
Xcode: 14.3/14E222b - /usr/bin/xcodebuild
Languages:
Java: Not Found
npmPackages:
@react-native-community/cli: Not Found
react: 18.2.0 => 18.2.0
react-native: 0.71.7 => 0.71.7
react-native-macos: Not Found
npmGlobalPackages:
react-native: Not Found
Steps to reproduce
import React, { useState } from 'react';
import {
SafeAreaView,
View,
FlatList,
StyleSheet,
Text,
StatusBar,
Pressable
} from 'react-native';
const DATA = [
{
id: 'bd7acbea-c1b1-46c2-aed5-3ad53abb28ba',
title: 'First Item',
},
{
id: '3ac68afc-c605-48d3-a4f8-fbd91aa97f63',
title: 'Second Item',
},
{
id: '58694a0f-3da1-471f-bd96-145571e29d72',
title: 'Third Item',
},
];
const Item = ({title}) => (
<View style={styles.item}>
<Text style={styles.title}>{title}</Text>
</View>
);
const App = () => {
return (
<SafeAreaView style={styles.container}>
<FlatListWithPullToRefresh />
</SafeAreaView>
);
};
// repro
const FlatListWithPullToRefresh = () => {
const [refreshing, setRefreshing] = useState(false)
const onRefresh = () => {
setRefreshing(true)
setTimeout(() => setRefreshing(false), 1000)
}
return (
<FlatList
refreshing={refreshing}
onRefresh={onRefresh}
data={DATA}
renderItem={({item}) => <Item title={item.title} />}
keyExtractor={item => item.id}
/>
)
}
const styles = StyleSheet.create({
container: {
flex: 1,
marginTop: StatusBar.currentHeight || 0,
},
item: {
backgroundColor: '#f9c2ff',
padding: 20,
marginVertical: 8,
marginHorizontal: 16,
},
title: {
fontSize: 32,
},
button: {
height: 50,
width: '90%',
alignItems: 'center',
justifyContent: 'center',
backgroundColor: 'red',
alignSelf: 'center'
}
});
export default App;
Snack, code example, screenshot, or link to a repository
https://snack.expo.dev/@skinsengineering/flatlist-simple
NOTE: you will need to run the repro locally in development mode (rather than via expo) and reload the bundle from the terminal, to see the refresh controls disappear. Hopefully solving it in this case will solve it in the many others people seem to be having.