From cd2a80a5424f60d645207ddae003c49bc38e2fc5 Mon Sep 17 00:00:00 2001 From: tapframe <85391825+tapframe@users.noreply.github.com> Date: Tue, 17 Mar 2026 06:40:41 +0530 Subject: [PATCH] ref: to use blurview on ios appletv hero action button --- src/components/home/AppleTVHero.tsx | 27 ++++++++++++++++++++++----- src/hooks/useSettings.ts | 2 +- 2 files changed, 23 insertions(+), 6 deletions(-) diff --git a/src/components/home/AppleTVHero.tsx b/src/components/home/AppleTVHero.tsx index e06487ac..633bbd23 100644 --- a/src/components/home/AppleTVHero.tsx +++ b/src/components/home/AppleTVHero.tsx @@ -1339,11 +1339,21 @@ const AppleTVHero: React.FC = ({ onPress={handleSaveAction} activeOpacity={0.85} > - + {Platform.OS === 'ios' ? ( + + + + ) : ( + + )} @@ -1496,11 +1506,18 @@ const styles = StyleSheet.create({ height: 52, borderRadius: 30, backgroundColor: 'rgba(255,255,255,0.2)', + overflow: 'hidden', alignItems: 'center', justifyContent: 'center', borderWidth: 1.5, borderColor: 'rgba(255,255,255,0.3)', }, + saveButtonBlur: { + width: '100%', + height: '100%', + alignItems: 'center', + justifyContent: 'center', + }, paginationContainer: { flexDirection: 'row', alignItems: 'center', diff --git a/src/hooks/useSettings.ts b/src/hooks/useSettings.ts index ca9dca76..98b74aa0 100644 --- a/src/hooks/useSettings.ts +++ b/src/hooks/useSettings.ts @@ -172,7 +172,7 @@ export const DEFAULT_SETTINGS: AppSettings = { // AI aiChatEnabled: false, // Metadata enrichment - enrichMetadataWithTMDB: true, + enrichMetadataWithTMDB: false, useTmdbLocalizedMetadata: false, // Granular TMDB enrichment controls (all enabled by default for backward compatibility) tmdbEnrichCast: true,