From 70b003a66aea6ee7d326638d0bfc33fd73c304e2 Mon Sep 17 00:00:00 2001 From: Derek Blank Date: Thu, 25 Jan 2024 16:15:49 +1000 Subject: [PATCH] Update nonVisibleImage styles Using width: 1 and height: 1 ensures that onLoad will fire --- packages/components/src/mobile/image/style.native.scss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/components/src/mobile/image/style.native.scss b/packages/components/src/mobile/image/style.native.scss index 2235f83d8e85d..cebc097de8cdc 100644 --- a/packages/components/src/mobile/image/style.native.scss +++ b/packages/components/src/mobile/image/style.native.scss @@ -173,7 +173,7 @@ } .nonVisibleImage { - height: 0; - width: 0; + height: 1; + width: 1; opacity: 0; }