mirror of
https://github.com/tapframe/NuvioStreaming.git
synced 2026-04-25 18:42:53 +00:00
icon changes
This commit is contained in:
parent
829e569ccd
commit
12d04e84d8
3 changed files with 7 additions and 7 deletions
|
|
@ -518,7 +518,7 @@ const FeaturedContent = ({ featuredContent, isSaved, handleSaveToLibrary, loadin
|
||||||
onPress={handleSaveToLibrary}
|
onPress={handleSaveToLibrary}
|
||||||
activeOpacity={0.7}
|
activeOpacity={0.7}
|
||||||
>
|
>
|
||||||
<Feather name="bookmark" size={20} color={currentTheme.colors.white} />
|
<MaterialIcons name={isSaved ? "bookmark" : "bookmark-outline"} size={20} color={currentTheme.colors.white} />
|
||||||
<Text style={[styles.tabletSecondaryButtonText as TextStyle, { color: currentTheme.colors.white }]}>
|
<Text style={[styles.tabletSecondaryButtonText as TextStyle, { color: currentTheme.colors.white }]}>
|
||||||
{isSaved ? "Saved" : "My List"}
|
{isSaved ? "Saved" : "My List"}
|
||||||
</Text>
|
</Text>
|
||||||
|
|
@ -624,7 +624,7 @@ const FeaturedContent = ({ featuredContent, isSaved, handleSaveToLibrary, loadin
|
||||||
onPress={handleSaveToLibrary}
|
onPress={handleSaveToLibrary}
|
||||||
activeOpacity={0.7}
|
activeOpacity={0.7}
|
||||||
>
|
>
|
||||||
<Feather name="bookmark" size={24} color={currentTheme.colors.white} />
|
<MaterialIcons name={isSaved ? "bookmark" : "bookmark-outline"} size={24} color={currentTheme.colors.white} />
|
||||||
<Text style={[styles.myListButtonText as TextStyle, { color: currentTheme.colors.white }]}>
|
<Text style={[styles.myListButtonText as TextStyle, { color: currentTheme.colors.white }]}>
|
||||||
{isSaved ? "Saved" : "Save"}
|
{isSaved ? "Saved" : "Save"}
|
||||||
</Text>
|
</Text>
|
||||||
|
|
|
||||||
|
|
@ -131,7 +131,7 @@ const FloatingHeader: React.FC<FloatingHeaderProps> = ({
|
||||||
onPress={handleToggleLibrary}
|
onPress={handleToggleLibrary}
|
||||||
hitSlop={{ top: 10, bottom: 10, left: 10, right: 10 }}
|
hitSlop={{ top: 10, bottom: 10, left: 10, right: 10 }}
|
||||||
>
|
>
|
||||||
<Feather name="bookmark" size={22} color={currentTheme.colors.highEmphasis} />
|
<MaterialIcons name={inLibrary ? "bookmark" : "bookmark-outline"} size={22} color={currentTheme.colors.highEmphasis} />
|
||||||
</TouchableOpacity>
|
</TouchableOpacity>
|
||||||
</Animated.View>
|
</Animated.View>
|
||||||
</GlassViewComp>
|
</GlassViewComp>
|
||||||
|
|
@ -175,7 +175,7 @@ const FloatingHeader: React.FC<FloatingHeaderProps> = ({
|
||||||
onPress={handleToggleLibrary}
|
onPress={handleToggleLibrary}
|
||||||
hitSlop={{ top: 10, bottom: 10, left: 10, right: 10 }}
|
hitSlop={{ top: 10, bottom: 10, left: 10, right: 10 }}
|
||||||
>
|
>
|
||||||
<Feather name="bookmark" size={22} color={currentTheme.colors.highEmphasis} />
|
<MaterialIcons name={inLibrary ? "bookmark" : "bookmark-outline"} size={22} color={currentTheme.colors.highEmphasis} />
|
||||||
</TouchableOpacity>
|
</TouchableOpacity>
|
||||||
</Animated.View>
|
</Animated.View>
|
||||||
</ExpoBlurView>
|
</ExpoBlurView>
|
||||||
|
|
@ -221,7 +221,7 @@ const FloatingHeader: React.FC<FloatingHeaderProps> = ({
|
||||||
onPress={handleToggleLibrary}
|
onPress={handleToggleLibrary}
|
||||||
hitSlop={{ top: 10, bottom: 10, left: 10, right: 10 }}
|
hitSlop={{ top: 10, bottom: 10, left: 10, right: 10 }}
|
||||||
>
|
>
|
||||||
<Feather name="bookmark" size={22} color={currentTheme.colors.highEmphasis} />
|
<MaterialIcons name={inLibrary ? "bookmark" : "bookmark-outline"} size={22} color={currentTheme.colors.highEmphasis} />
|
||||||
</TouchableOpacity>
|
</TouchableOpacity>
|
||||||
</Animated.View>
|
</Animated.View>
|
||||||
</View>
|
</View>
|
||||||
|
|
|
||||||
|
|
@ -306,8 +306,8 @@ const ActionButtons = memo(({
|
||||||
) : (
|
) : (
|
||||||
<View style={styles.androidFallbackBlur} />
|
<View style={styles.androidFallbackBlur} />
|
||||||
)}
|
)}
|
||||||
<Feather
|
<MaterialIcons
|
||||||
name="bookmark"
|
name={inLibrary ? "bookmark" : "bookmark-outline"}
|
||||||
size={isTablet ? 28 : 24}
|
size={isTablet ? 28 : 24}
|
||||||
color={currentTheme.colors.white}
|
color={currentTheme.colors.white}
|
||||||
/>
|
/>
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue