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
@ma-pe thanks for reporting this. I will need a little time to investigate this myself. However, feel free to open a PR with your suggested changes and I will gladly review it.
@ma-pe I have the same issue. Like you suggested, I have changed RCT_EXPORT_VIEW_PROPERTY("exampleProp", NSString) to RCT_EXPORT_VIEW_PROPERTY(exampleProp, NSString). Nevertheless, there is still the same error: Value of type 'ModuleName' has no member 'exampleProp'. Do you have any idea how to solve this?
Dev setup:
react-native-create-bridge
version: 1.2.0react-native
version: 0.53.0I am using create-bridge in a:
What you did:
Setup a new Native Module & UI Component in Swift.
What happened:
ModuleName.m
RCT_EXPORT_VIEW_PROPERTY("exampleProp", NSString)
should beRCT_EXPORT_VIEW_PROPERTY(exampleProp, NSString)
The text was updated successfully, but these errors were encountered: