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
Hi! 👋
Firstly, thanks for your work on this project! 🙂
Today I used patch-package to patch [email protected] for the project I'm working on.
[email protected]
The issue I had was : using this library will prompt an error saying ViewPagerAndroid has been removed from react native.
Here is the diff that solved my problem:
diff --git a/node_modules/rn-viewpager/viewpager/ViewPager.js b/node_modules/rn-viewpager/viewpager/ViewPager.js index 41f8f1b..451701c 100644 --- a/node_modules/rn-viewpager/viewpager/ViewPager.js +++ b/node_modules/rn-viewpager/viewpager/ViewPager.js @@ -4,8 +4,9 @@ 'use strict' -import { PanResponder, Platform, ScrollView, StyleSheet, View, ViewPagerAndroid } from 'react-native' +import { PanResponder, Platform, ScrollView, StyleSheet, View } from 'react-native' import React, { Component } from 'react' +import ViewPagerAndroid from '@react-native-community/viewpager' const SCROLLVIEW_REF = 'scrollView' const VIEWPAGER_REF = 'viewPager'
This issue body was partially generated by patch-package.
The text was updated successfully, but these errors were encountered:
PS, I manually added to my dependencies @react-native-community/viewpager, I guess to fix the issue, you'll have to add the dependency to the library
Sorry, something went wrong.
No branches or pull requests
Hi! 👋
Firstly, thanks for your work on this project! 🙂
Today I used patch-package to patch
[email protected]
for the project I'm working on.The issue I had was : using this library will prompt an error saying ViewPagerAndroid has been removed from react native.
Here is the diff that solved my problem:
This issue body was partially generated by patch-package.
The text was updated successfully, but these errors were encountered: