fix(android): update fill color for refresh button based on loading state

This commit is contained in:
Fredrik Burmester
2025-11-08 12:38:18 +01:00
parent ad1bd72123
commit 69d744c86f

View File

@@ -31,6 +31,7 @@ export const RefreshMetadata: FC<Props> = ({ item, ...props }) => {
icon='reload-outline' icon='reload-outline'
onPress={refreshMetadata} onPress={refreshMetadata}
hapticFeedback={!isRefreshing} hapticFeedback={!isRefreshing}
fillColor={isRefreshing ? "primary" : undefined}
/> />
</View> </View>
); );