Update SourcesModal styling for improved clarity and consistency

This change renames the current source badge to current stream badge and updates the associated text style for better alignment with the overall design. These adjustments enhance the user interface by providing clearer visual feedback regarding the selected stream.
This commit is contained in:
tapframe 2025-06-10 02:55:49 +05:30
parent 89702d14f5
commit 66fe4b748d

View file

@ -95,9 +95,9 @@ const SourcesModal: React.FC<SourcesModalProps> = ({
</Text>
{isSelected && (
<View style={styles.currentSourceBadge}>
<View style={styles.currentStreamBadge}>
<MaterialIcons name="play-arrow" size={16} color="#E50914" />
<Text style={styles.currentSourceText}>Current</Text>
<Text style={styles.currentSourceItem}>Current</Text>
</View>
)}