-
Notifications
You must be signed in to change notification settings - Fork 430
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
React does not recognize the XXX
prop on a DOM
#153
Comments
@necolas Shouldn't RNW |
Yeah I kind of hate how sloppy RN is about passing props down. It should be more explicit and not pass everything through. |
It does so before sending them down to the native views. So, it works out in this case. RNW isn't doing so. Although I plan to filter out at RLV level. But should we think about making RNW somewhat selective while choosing props to pass down to inner div? |
Possibly, but filtering props isn't free and should really be taken care of in user land components. Passing invalid props to RN components should be prop warnings and flow errors. Like RN FlatList passes all it's props to scrollview even though they are not recognized :/ |
Exactly, so you suggest we do it at the List level then? |
@naqvitalha @necolas any updates on this? |
I'm using recyclerlistview with react-native-web, and have a lot of this warnings in development mode. How it's possible to get rid of it?
The text was updated successfully, but these errors were encountered: