having a bug with api :/

This commit is contained in:
danis
2023-06-28 09:11:49 +02:00
parent a6ae770194
commit b2247e79ae
4 changed files with 43 additions and 6 deletions

View File

@@ -20,6 +20,8 @@ const SongRow = ({ song, onPress }: SongRowProps) => {
style={{ zIndex: 0, aspectRatio: 1, borderRadius: 5 }}
source={{ uri: song.cover }}
alt={song.name}
borderColor={'white'}
borderWidth={1}
/>
<HStack
style={{
@@ -36,7 +38,7 @@ const SongRow = ({ song, onPress }: SongRowProps) => {
flexShrink: 1,
}}
isTruncated
pl={10}
pl={5}
maxW={"100%"}
bold
fontSize="md"
@@ -59,6 +61,7 @@ const SongRow = ({ song, onPress }: SongRowProps) => {
colorScheme="primary"
variant={"outline"}
size="sm"
mr={5}
onPress={onPress}
/>
</HStack>