NTP-60448 | iOS Assets Changes (#16000)

This commit is contained in:
Prajjaval Verma
2025-04-30 19:25:34 +05:30
committed by GitHub
parent 5498315bb4
commit 4140f486cb
13 changed files with 6 additions and 6 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 565 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 314 B

BIN
assets/images/cross.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 705 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 426 B

BIN
assets/images/help.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 544 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 36 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.6 KiB

BIN
assets/images/sww.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.1 KiB

View File

@@ -5,34 +5,34 @@ export const AppImage: React.FC<AppImageProps> = ({ imageCode, style }) => {
switch (imageCode) {
case ImageName.SWW:
return (
<Image source={require("../assets/images/sww.webp")} style={style} />
<Image source={require("../assets/images/sww.png")} style={style} />
);
case ImageName.NO_INTERNET:
return (
<Image
source={require("../assets/images/no_internet.webp")}
source={require("../assets/images/no_internet.png")}
style={style}
/>
);
case ImageName.CROSS:
return (
<Image source={require("../assets/images/cross.webp")} style={style} />
<Image source={require("../assets/images/cross.png")} style={style} />
);
case ImageName.HELP:
return (
<Image source={require("../assets/images/help.webp")} style={style} />
<Image source={require("../assets/images/help.png")} style={style} />
);
case ImageName.QUOTE_APOLOGY_ICON:
return (
<Image
source={require("../assets/images/quote_apology_icon.webp")}
source={require("../assets/images/quote_apology_icon.png")}
style={style}
/>
);
case ImageName.BACK_ARROW:
return (
<Image
source={require("../assets/images/arrow_left.webp")}
source={require("../assets/images/arrow_left.png")}
style={style}
/>
);