mirror of
https://github.com/tapframe/NuvioStreaming.git
synced 2026-01-11 20:10:25 +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}
|
||||
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 }]}>
|
||||
{isSaved ? "Saved" : "My List"}
|
||||
</Text>
|
||||
|
|
@ -624,7 +624,7 @@ const FeaturedContent = ({ featuredContent, isSaved, handleSaveToLibrary, loadin
|
|||
onPress={handleSaveToLibrary}
|
||||
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 }]}>
|
||||
{isSaved ? "Saved" : "Save"}
|
||||
</Text>
|
||||
|
|
|
|||
|
|
@ -131,7 +131,7 @@ const FloatingHeader: React.FC<FloatingHeaderProps> = ({
|
|||
onPress={handleToggleLibrary}
|
||||
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>
|
||||
</Animated.View>
|
||||
</GlassViewComp>
|
||||
|
|
@ -175,7 +175,7 @@ const FloatingHeader: React.FC<FloatingHeaderProps> = ({
|
|||
onPress={handleToggleLibrary}
|
||||
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>
|
||||
</Animated.View>
|
||||
</ExpoBlurView>
|
||||
|
|
@ -221,7 +221,7 @@ const FloatingHeader: React.FC<FloatingHeaderProps> = ({
|
|||
onPress={handleToggleLibrary}
|
||||
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>
|
||||
</Animated.View>
|
||||
</View>
|
||||
|
|
|
|||
|
|
@ -306,8 +306,8 @@ const ActionButtons = memo(({
|
|||
) : (
|
||||
<View style={styles.androidFallbackBlur} />
|
||||
)}
|
||||
<Feather
|
||||
name="bookmark"
|
||||
<MaterialIcons
|
||||
name={inLibrary ? "bookmark" : "bookmark-outline"}
|
||||
size={isTablet ? 28 : 24}
|
||||
color={currentTheme.colors.white}
|
||||
/>
|
||||
|
|
|
|||
Loading…
Reference in a new issue