mirror of
https://github.com/austinried/subtracks.git
synced 2025-12-29 09:29:29 +01:00
artist list visual tweaks
This commit is contained in:
parent
e6c76776a3
commit
3b0c593c6c
@ -15,7 +15,7 @@ const ArtistItem: React.FC<{ item: Artist }> = ({ item }) => {
|
|||||||
|
|
||||||
return (
|
return (
|
||||||
<Pressable style={styles.item} onPress={() => navigation.navigate('ArtistView', { id: item.id, title: item.name })}>
|
<Pressable style={styles.item} onPress={() => navigation.navigate('ArtistView', { id: item.id, title: item.name })}>
|
||||||
<ArtistArt id={item.id} width={56} height={56} />
|
<ArtistArt id={item.id} width={70} height={70} />
|
||||||
<Text style={styles.title}>{item.name}</Text>
|
<Text style={styles.title}>{item.name}</Text>
|
||||||
</Pressable>
|
</Pressable>
|
||||||
)
|
)
|
||||||
@ -59,13 +59,13 @@ const styles = StyleSheet.create({
|
|||||||
flexDirection: 'row',
|
flexDirection: 'row',
|
||||||
alignItems: 'center',
|
alignItems: 'center',
|
||||||
marginVertical: 6,
|
marginVertical: 6,
|
||||||
marginLeft: 6,
|
marginLeft: 10,
|
||||||
},
|
},
|
||||||
title: {
|
title: {
|
||||||
fontFamily: font.regular,
|
fontFamily: font.semiBold,
|
||||||
fontSize: 16,
|
fontSize: 16,
|
||||||
color: colors.text.primary,
|
color: colors.text.primary,
|
||||||
marginLeft: 12,
|
marginLeft: 14,
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user