We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Find an warning on iOS platform.
ExceptionsManager.js:78 Warning: Native component for "RCTSwipeRefreshLayout" does not exist
the stack is:
reactConsoleError @ ExceptionsManager.js:78 printWarning @ warning.js:36 warning @ warning.js:60 requireNativeComponent @ requireNativeComponent.js:53 (anonymous function) @ AndroidSwipeRefreshLayout.js:48 loadModuleImplementation @ require.js:122 guardedLoadModule @ require.js:65 _require @ require.js:49 (anonymous function) @ PullToRefreshListView-android.js:36 loadModuleImplementation @ require.js:122 guardedLoadModule @ require.js:65 _require @ require.js:49 (anonymous function) @ PullToRefreshListView.js:13 loadModuleImplementation @ require.js:122
I find in the PullToRefreshListView.js:12~13. It imports both iOS and Android view at the same time, that's the problem:
import AndroidPullToRefreshListView from './PullToRefreshListView-android' import IOSPullToRefreshListView from './PullToRefreshListView-ios'
I think it would be better to divide PullToRefreshListView.js to two files: PullToRefreshListView.ios.js and PullToRefreshListView.android.js
The text was updated successfully, but these errors were encountered:
Thank you for submitting this issue. It will be fixed next version :)
Sorry, something went wrong.
No branches or pull requests
Find an warning on iOS platform.
the stack is:
I find in the PullToRefreshListView.js:12~13.
It imports both iOS and Android view at the same time, that's the problem:
I think it would be better to divide PullToRefreshListView.js to two files: PullToRefreshListView.ios.js and PullToRefreshListView.android.js
The text was updated successfully, but these errors were encountered: