Skip to content
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

ViewPagerAndroid has been removed from react native #200

Open
rakefetWorkiz opened this issue Oct 3, 2021 · 1 comment
Open

ViewPagerAndroid has been removed from react native #200

rakefetWorkiz opened this issue Oct 3, 2021 · 1 comment

Comments

@rakefetWorkiz
Copy link

Hi! 👋

Firstly, thanks for your work on this project! 🙂

Today I used patch-package to patch rn-viewpager@1.2.9 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:

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.

@rakefetWorkiz
Copy link
Author

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant