From 544dc8b639f30b9ea79998b9b2469bdf9ef60b2f Mon Sep 17 00:00:00 2001 From: tapframe Date: Mon, 13 Oct 2025 12:28:36 +0530 Subject: [PATCH] import update --- README.md | 2 +- index.html | 18 +++++++------- nuvio-source.json | 18 +++++++------- src/components/home/HeroCarousel.tsx | 37 ++++++++++++++++++++-------- 4 files changed, 46 insertions(+), 29 deletions(-) diff --git a/README.md b/README.md index 29585e6..9272f17 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,7 @@ | Home | Details | |:----:|:-------:| -| ![Home](screesnhots/Simulator%20Screenshot%20-%20iPhone%2016%20Pro%20-%202025-08-27%20at%2021.08.32-portrait.png) | ![Details](screesnhots/WhatsApp%20Image%202025-09-02%20at%2000.24.31-portrait.png) | +| ![Home](screenshots/Simulator%20Screenshot%20-%20iPhone%2016%20Pro%20-%202025-08-27%20at%2021.08.32-portrait.png) | ![Details](screenshots/WhatsApp%20Image%202025-09-02%20at%2000.24.31-portrait.png) | --- diff --git a/index.html b/index.html index b5a2ddf..d3242d1 100644 --- a/index.html +++ b/index.html @@ -1699,39 +1699,39 @@

SEE IT IN ACTION

- Home Screen + Home Screen

Home Screen

- App Interface + App Interface

Details Page

- Home Screen 2 + Home Screen 2

Home Screen 2

- Library + Library

Library

- Player Loading + Player Loading

Player Loading

- Video Player + Video Player

Video Player

- Ratings + Ratings

Ratings

- Episodes & Seasons + Episodes & Seasons

Episodes & Seasons

- Search & Details + Search & Details

Search & Details

diff --git a/nuvio-source.json b/nuvio-source.json index 23f6888..7d95243 100644 --- a/nuvio-source.json +++ b/nuvio-source.json @@ -19,15 +19,15 @@ "tintColor": "#04dcfc", "category": "entertainment", "screenshots": [ - "https://github.com/tapframe/NuvioStreaming/blob/main/screesnhots/Simulator%20Screenshot%20-%20iPhone%2016%20Pro%20-%202025-08-27%20at%2021.08.32-portrait.png?raw=true", - "https://github.com/tapframe/NuvioStreaming/blob/main/screesnhots/WhatsApp%20Image%202025-09-02%20at%2000.24.31-portrait.png?raw=true", - "https://github.com/tapframe/NuvioStreaming/blob/main/screesnhots/seasonandepisode-portrait.png?raw=true", - "https://github.com/tapframe/NuvioStreaming/blob/main/screesnhots/Simulator%20Screenshot%20-%20iPhone%2016%20Pro%20-%202025-08-27%20at%2021.09.43-portrait.png?raw=true", - "https://github.com/tapframe/NuvioStreaming/blob/main/screesnhots/Simulator%20Screenshot%20-%20iPhone%2016%20Pro%20-%202025-08-27%20at%2021.10.14-portrait.png?raw=true", - "https://github.com/tapframe/NuvioStreaming/blob/main/screesnhots/trailer-hero-section.png?raw=true", - "https://github.com/tapframe/NuvioStreaming/blob/main/screesnhots/video-player-interface.png?raw=true", - "https://github.com/tapframe/NuvioStreaming/blob/main/screesnhots/ratingscreen-portrait.png?raw=true", - "https://github.com/tapframe/NuvioStreaming/blob/main/screesnhots/search-portrait.png?raw=true" + "https://github.com/tapframe/NuvioStreaming/blob/main/screenshots/Simulator%20Screenshot%20-%20iPhone%2016%20Pro%20-%202025-08-27%20at%2021.08.32-portrait.png?raw=true", + "https://github.com/tapframe/NuvioStreaming/blob/main/screenshots/WhatsApp%20Image%202025-09-02%20at%2000.24.31-portrait.png?raw=true", + "https://github.com/tapframe/NuvioStreaming/blob/main/screenshots/seasonandepisode-portrait.png?raw=true", + "https://github.com/tapframe/NuvioStreaming/blob/main/screenshots/Simulator%20Screenshot%20-%20iPhone%2016%20Pro%20-%202025-08-27%20at%2021.09.43-portrait.png?raw=true", + "https://github.com/tapframe/NuvioStreaming/blob/main/screenshots/Simulator%20Screenshot%20-%20iPhone%2016%20Pro%20-%202025-08-27%20at%2021.10.14-portrait.png?raw=true", + "https://github.com/tapframe/NuvioStreaming/blob/main/screenshots/trailer-hero-section.png?raw=true", + "https://github.com/tapframe/NuvioStreaming/blob/main/screenshots/video-player-interface.png?raw=true", + "https://github.com/tapframe/NuvioStreaming/blob/main/screenshots/ratingscreen-portrait.png?raw=true", + "https://github.com/tapframe/NuvioStreaming/blob/main/screenshots/search-portrait.png?raw=true" ], "versions": [ { diff --git a/src/components/home/HeroCarousel.tsx b/src/components/home/HeroCarousel.tsx index d67408e..18f809a 100644 --- a/src/components/home/HeroCarousel.tsx +++ b/src/components/home/HeroCarousel.tsx @@ -1,7 +1,8 @@ import React, { useMemo, useState, useEffect, useCallback, memo } from 'react'; -import { View, Text, StyleSheet, Dimensions, TouchableOpacity, ViewStyle, TextStyle, ImageStyle, FlatList, StyleProp, Platform } from 'react-native'; +import { View, Text, StyleSheet, Dimensions, TouchableOpacity, ViewStyle, TextStyle, ImageStyle, FlatList, StyleProp, Platform, Image } from 'react-native'; import Animated, { FadeIn, FadeOut, Easing, useSharedValue, withTiming, useAnimatedStyle, useAnimatedScrollHandler, useAnimatedReaction, runOnJS } from 'react-native-reanimated'; import { LinearGradient } from 'expo-linear-gradient'; +import { BlurView } from 'expo-blur'; import FastImage from '@d11/react-native-fast-image'; import { MaterialIcons } from '@expo/vector-icons'; import { useNavigation } from '@react-navigation/native'; @@ -160,15 +161,31 @@ const HeroCarousel: React.FC = ({ items, loading = false }) = key={item.id} style={[animatedStyle, { flex: 1 }] as any} > - + {Platform.OS === 'android' ? ( + + ) : ( + <> + + + + )}