ammarahm-ed / react-native-actions-sheet

A Cross Platform(Android, iOS & Web) ActionSheet with a flexible api, native performance and zero dependency code for react native. Create anything you want inside ActionSheet.
https://rnas.vercel.app
MIT License
1.42k stars 119 forks source link

Sending `onAnimatedValueUpdate` with no listeners registered. #290

Closed LluisR closed 5 months ago

LluisR commented 1 year ago

This warning has been launched when execute SheetManager.hide function.

Captura de Pantalla 2023-05-02 a las 14 05 28

Obviously, the "animated" prop of the ActionSheet object must be set to true. If there is no animation, the warning is not triggered.

¿Any ideas?

Thank you!

jonxssc commented 1 year ago

Same problem, also no idea why that happens

isilgawen commented 1 year ago

Same issue here

ayuleul commented 1 year ago

i got the some logs.

alex-pominov commented 1 year ago

Same issue here

sabuhiteymurov commented 1 year ago

Is there any possible fix?

EdsonJrx commented 10 months ago

I've been used LogBox.ignoreLogs(['Sending onAnimatedValueUpdate']); for while.

YuGer26 commented 8 months ago

Use actionSheetRef. current Show(); There wouldn't be this warning

MaSMas0 commented 7 months ago

not sure but when i used onBeforeClose instead of OnClose and used actionSheetRef.current.show() & actionSheetRef.current.hide() the warning disappeared

      onBeforeClose={() => closeActionSheet()}

instead of

onClose ={()=>closeActionSheet()}
recursivetree commented 6 months ago

Can confirm I'm affected by this too