react-navigation-shared-element icon indicating copy to clipboard operation
react-navigation-shared-element copied to clipboard

property is not configurable error

Open Bayramito opened this issue 2 years ago • 8 comments

Ekran Resmi 2022-04-11 12 49 14

I get these strange errors when i try to navigate from listing screen to the detail with react-navigation-shared-element.

DEV SETUP:

"react-native-shared-element": "^0.8.4",
"react-navigation-shared-element": "^3.1.3",
"react-native": "0.64.2",
"react-native-reanimated": "^2.6.0",

Bayramito avatar Apr 11 '22 09:04 Bayramito

https://github.com/IjzerenHein/react-native-shared-element/issues/76#issuecomment-1022873439 this helped my case

j-cheung avatar Apr 20 '22 15:04 j-cheung

i get these when i copied code examp form react native bottom tab image image

thinhtt264 avatar Mar 16 '23 03:03 thinhtt264

i get these when i copied code examp form react native bottom tab image image

Same here

minemos avatar Mar 17 '23 21:03 minemos

The console issue is tracked here: https://github.com/software-mansion/react-native-reanimated/issues/4225

DomiR avatar Mar 20 '23 14:03 DomiR

Same here How to resolve this ??

### "@react-navigation/drawer": "^6.6.2",
"@react-navigation/native": "^6.1.6",
"@react-navigation/stack": "^6.3.16",
"axios": "^1.3.4",
"moment": "^2.29.4",
"native-base": "^3.4.28",
"react": "18.2.0",
"react-native": "0.71.6",
"react-native-gesture-handler": "^2.9.0",
"react-native-reanimated": "^3.0.2",

VivekkChudasama avatar Apr 06 '23 14:04 VivekkChudasama

I got the same issue. I didn't use a key in the map function, which was causing this issue.

yasintorun avatar Apr 18 '23 07:04 yasintorun

You Just Save App.js and the metro again and reload R it... This works for me. Basically, I think we have to focus on wrapping part for Such a issues.

Tejasbagul007 avatar Apr 20 '23 12:04 Tejasbagul007

My issue was using something like

const styles = Stylesheet.create({
    root: {
       width,
    }
})

and width was not defined

LeOndaz avatar May 17 '23 19:05 LeOndaz