This commit is contained in:
Clément Le Bihan
2023-11-17 11:30:54 +01:00
parent 1f25521900
commit 9d6beb74c0
2 changed files with 10 additions and 10 deletions
+9 -9
View File
@@ -143,15 +143,15 @@ const PartitionMagic = ({ songID, onEndReached, onError, onReady }: ParitionMagi
}} }}
> >
{!isLoading && !isError && ( {!isLoading && !isError && (
<ImageBackground <ImageBackground
source={{ uri: getSVGURL(songID) }} source={{ uri: getSVGURL(songID) }}
onLoad={onReady} onLoad={onReady}
style={{ style={{
aspectRatio: partitionDims[0] / partitionDims[1], aspectRatio: partitionDims[0] / partitionDims[1],
height: '100%', height: '100%',
position: 'relative', position: 'relative',
}} }}
/> />
)} )}
</Animated.View> </Animated.View>
<Animated.View <Animated.View
+1 -1
View File
@@ -114,6 +114,6 @@
"app.config.ts", "app.config.ts",
"*/*.test.tsx", "*/*.test.tsx",
"web-build", "web-build",
"dist", "dist"
] ]
} }