react-native-nested-scroll-view icon indicating copy to clipboard operation
react-native-nested-scroll-view copied to clipboard

react-native wrapper for android NestedScrollView

Results 15 react-native-nested-scroll-view issues
Sort by recently updated
recently updated
newest added

Hey @cesardeazevedo 👋 This library is useful! However it won't work in React Native `0.66.x`. This file: ```js const ScrollResponder = require('react-native/Libraries/Components/ScrollResponder'); ``` Does not exist in react-native repo anymore....

In favor of the new release of ReactNative this library doesn't work anymore. It's no more maintained?

Hi, I can't release my app with react-native-nested-scroll-view, When I do gradlew assembleRelease in my android app folder Result : Execution failed for task :react-native-nested-scroll-view:verifyReleaseResources. A failure occurred while executing...

Is there a recommendation for nested scrolling nested components in ios? This component is great on Android

In case you're making it reusable, kindly include the root project SDK version instead of the original one.

We've updated version for react-native versions 0.55.4 or bellow. - Fixed issue with flying; - Improved android gradle dependency versions.

Hello, thanks for this super awesome library ! I made my own wrapper for native android TabLayout that works well with this lib and ViewPagerAndroid in order to achieve collapsible...

I would like to use your library for my project and have added your library via the following instructions 1) yarn add react-native-nested-scroll-view 2) Manually linking via your instructions to...

``` import React, {Component} from 'react'; import {Text, View, ScrollView, Dimensions} from 'react-native'; import NestedScrollView from 'react-native-nested-scroll-view'; export default class Test extends Component { render() { return ( textInComponent textInComponent...