simple ui fxes

This commit is contained in:
tapframe 2025-07-08 13:23:19 +05:30
parent eec96b09d2
commit 7a16d67a74

View file

@ -555,9 +555,11 @@ const ContinueWatchingSection = React.forwardRef<ContinueWatchingRef>((props, re
>
{item.name}
</Text>
<View style={[styles.progressBadge, { backgroundColor: currentTheme.colors.primary }]}>
<Text style={styles.progressText}>{isUpNext ? 'Up Next' : `${Math.round(item.progress)}%`}</Text>
</View>
{isUpNext && (
<View style={[styles.progressBadge, { backgroundColor: currentTheme.colors.primary }]}>
<Text style={styles.progressText}>Up Next</Text>
</View>
)}
</View>
);
})()}