build out artist view

clean up mapping methods a bit
This commit is contained in:
austinried
2021-07-15 16:58:08 +09:00
parent e7f9b1db86
commit 62a721ba4d
9 changed files with 180 additions and 83 deletions

View File

@@ -38,7 +38,7 @@ const Category = React.memo<{
}>(({ name, data }) => {
return (
<View style={styles.category}>
<Text style={styles.header}>{name}</Text>
<Text style={styles.categoryHeader}>{name}</Text>
<ScrollView
horizontal={true}
showsHorizontalScrollIndicator={false}
@@ -95,7 +95,7 @@ const styles = StyleSheet.create({
category: {
marginTop: 12,
},
header: {
categoryHeader: {
fontFamily: font.bold,
fontSize: 24,
color: colors.text.primary,