From 69d744c86f34e237ecf71077cf4d3552556fec94 Mon Sep 17 00:00:00 2001 From: Fredrik Burmester Date: Sat, 8 Nov 2025 12:38:18 +0100 Subject: [PATCH] fix(android): update fill color for refresh button based on loading state --- components/RefreshMetadata.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/components/RefreshMetadata.tsx b/components/RefreshMetadata.tsx index 9f07f7ee..7cf8eb72 100644 --- a/components/RefreshMetadata.tsx +++ b/components/RefreshMetadata.tsx @@ -31,6 +31,7 @@ export const RefreshMetadata: FC = ({ item, ...props }) => { icon='reload-outline' onPress={refreshMetadata} hapticFeedback={!isRefreshing} + fillColor={isRefreshing ? "primary" : undefined} /> );