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
The dialog is working fine on ios simulator, but fails to work correctly on device.
The overlay occurs, but then the content doesn't load.
I've traced it to animated view. When I remove the entering prop inside the DialogOverlayNative function, it works.
exportconstHome=()=>{return(<><ScrollView><StyledViewclassName="flex-1 p-4"><StyledViewclassName="mb-4 flex-row flex-wrap gap-2"><Dialog><DialogTrigger><Text>Open?</Text></DialogTrigger><DialogContent><DialogHeader><DialogTitle>Are you absolutely sure?</DialogTitle><DialogDescription>
This action cannot be undone. This will permanently delete your account and
remove your data from our servers.
</DialogDescription></DialogHeader></DialogContent></Dialog></StyledView></StyledView></ScrollView></>}
okay, this is happening because of the reduceMotion ios setting on my device.
there is an entering prop on the selectPrimitive (as well as other RNR components) that is causing the element not to work.
I haven't been able to get the React Native Reanimated's ReduceMotion.Never property or ReduceMotion() chain to work just yet, either.
Overall, this is a bit of a problem for anyone creating apps using these components for devices using the reduceMotion ios setting, so i think a code change to this library should be encouraged to deal with this
Describe the bug
The dialog is working fine on ios simulator, but fails to work correctly on device.
The overlay occurs, but then the content doesn't load.
I've traced it to animated view. When I remove the entering prop inside the DialogOverlayNative function, it works.
To Reproduce
Steps to reproduce the behavior:
cd ios && pod install && cd .. && run eas-build-pre-install && expo prebuild && expo run:ios --configuration Release -d
Expected behavior
(as expected)
Screenshots
Platform (please complete the following information):
Additional context
(none)
The text was updated successfully, but these errors were encountered: