icon changes

This commit is contained in:
tapframe 2025-10-15 22:33:41 +05:30
parent 829e569ccd
commit 12d04e84d8
3 changed files with 7 additions and 7 deletions

View file

@ -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>

View file

@ -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>

View file

@ -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}
/>