You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When opening an image using react-native-image-modal, the image exhibits unwanted shaking/vibration behavior during the modal presentation. This creates a poor user experience with visual instability.
Observe the shaking/vibration behavior during modal presentation
Expected Behavior
The image should open smoothly in the modal without any shaking or vibration effects.
Actual Behavior
The image shakes/vibrates when opening the modal, creating visual instability.
Code Example
importImageModalfrom'react-native-image-modal';import{createImageProgress}from'react-native-image-progress';importFastImagefrom'react-native-fast-image';constImageProgress=createImageProgress(FastImage);// Basic usage that exhibits the shaking behavior<ImageModalref={imageModalRef}style={modalStyle}disabled={isClickOpenDisable}resizeMode='cover'modalImageResizeMode='contain'animationDuration={300}renderImageComponent={({ resizeMode, style })=>(<Viewstyle={style}><ImageProgresssource={isImage&&imageSource ? { ...source,priority: FastImage.priority.high} : defaultImg}style={[imgStyle,{overflow: 'hidden'}]}indicator={()=><ActivityIndicatorcolor={Colors.BrilliantRose}/>}resizeMode={resizeMode}onError={()=>setImageSource(false)}{...restProps}/></View>)}/>
Additional Context
This issue appears to be related to the modal animation or transition handling in version 3.0.13. The shaking occurs specifically during the opening animation of the modal.
🐞 Bug: Image Shaking/Vibration When Opening Modal
Description
When opening an image using
react-native-image-modal, the image exhibits unwanted shaking/vibration behavior during the modal presentation. This creates a poor user experience with visual instability.Environment
{ "react-native-image-modal": "3.0.13", "react-native-image-progress": "^1.2.0", "react-native-fast-image": "^8.6.3", "react": "19.0.0", "react-native": "0.79.5" }Platform
Steps to Reproduce
react-native-image-modalversion 3.0.13Expected Behavior
The image should open smoothly in the modal without any shaking or vibration effects.
Actual Behavior
The image shakes/vibrates when opening the modal, creating visual instability.
Code Example
Additional Context
This issue appears to be related to the modal animation or transition handling in version 3.0.13. The shaking occurs specifically during the opening animation of the modal.
Possible Related Issues
Workaround Attempted
resizeModevaluesScreenshots/Video
Screen.Recording.2025-09-03.at.12.42.46.PM.mov