Upload improvements for imgproxy.

This commit is contained in:
Patrick Fic
2025-10-31 09:38:51 -07:00
parent ab8703a524
commit beb1145f98
11 changed files with 43 additions and 24 deletions

View File

@@ -33,7 +33,14 @@ const ImageLoader = ({ style, source, ...props }) => {
if (loading)
return (
<>
<ActivityIndicator style={{ ...style, position: "absolute" }} />
<ActivityIndicator
style={{
...style,
position: "absolute",
alignSelf: "center",
margin: 12,
}}
/>
{memorizedImage}
</>
);