{"id":17129084,"url":"https://github.com/cesardeazevedo/react-native-nested-scroll-view","last_synced_at":"2026-03-06T22:05:00.039Z","repository":{"id":73039626,"uuid":"92913965","full_name":"cesardeazevedo/react-native-nested-scroll-view","owner":"cesardeazevedo","description":"react-native wrapper for android NestedScrollView","archived":false,"fork":false,"pushed_at":"2024-04-11T07:57:28.000Z","size":76,"stargazers_count":89,"open_issues_count":15,"forks_count":37,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-04-02T06:11:20.237Z","etag":null,"topics":["android","coordinatorlayout","nested-scrolling","nestedscrollview","react-native"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/cesardeazevedo.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2017-05-31T06:46:34.000Z","updated_at":"2024-11-21T10:47:13.000Z","dependencies_parsed_at":"2024-10-28T07:47:43.175Z","dependency_job_id":null,"html_url":"https://github.com/cesardeazevedo/react-native-nested-scroll-view","commit_stats":null,"previous_names":[],"tags_count":10,"template":false,"template_full_name":null,"purl":"pkg:github/cesardeazevedo/react-native-nested-scroll-view","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cesardeazevedo%2Freact-native-nested-scroll-view","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cesardeazevedo%2Freact-native-nested-scroll-view/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cesardeazevedo%2Freact-native-nested-scroll-view/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cesardeazevedo%2Freact-native-nested-scroll-view/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cesardeazevedo","download_url":"https://codeload.github.com/cesardeazevedo/react-native-nested-scroll-view/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cesardeazevedo%2Freact-native-nested-scroll-view/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30200756,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-06T19:07:06.838Z","status":"ssl_error","status_checked_at":"2026-03-06T18:57:34.882Z","response_time":250,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["android","coordinatorlayout","nested-scrolling","nestedscrollview","react-native"],"created_at":"2024-10-14T19:08:50.744Z","updated_at":"2026-03-06T22:04:55.010Z","avatar_url":"https://github.com/cesardeazevedo.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# react-native-nested-scroll-view\n\nThis is a fork from the original react native ScrollView and a replacement with [NestedScrollView](https://developer.android.com/reference/android/support/v4/widget/NestedScrollView.html).\n\n**DISCLAIMER**\n\nI build this component while i was building the [react-native-bottom-sheet-behavior](https://github.com/cesardeazevedo/react-native-bottom-sheet-behavior) and the [react-native-collapsing-toolbar](https://github.com/cesardeazevedo/react-native-collapsing-toolbar), which the [NestedScrollView](https://developer.android.com/reference/android/support/v4/widget/NestedScrollView.html) was a requirement in order to work with [CoordinatorLayout's](https://developer.android.com/reference/android/support/design/widget/CoordinatorLayout.html), if you are not using any native component, and just want to add some nested scroll in some List, i don't know if this component will work for you, feel free to give a try.\n\nThis component is too generic and wasn't built covering all Nested Scroll use cases, instead, it was born as just a fork of the original react native ScrollView, and i haven't tested all use cases and possibilities.\n\nThis project is android only, and will fallback to ScrollView on iOS.\n\n## Issues\n\nIf you have any issues, please attach a example project that i could reproduce it, since i don't know how people are exactly using it, without a project example, i won't be able to help you.\n\n## Libraries Using it.\n\n* [react-native-collapsing-toolbar](https://github.com/cesardeazevedo/react-native-collapsing-toolbar)\n\n* [react-native-bottom-sheet-behavior](https://github.com/cesardeazevedo/react-native-bottom-sheet-behavior)\n\n\u003e Tell me where you are using it!\n\n## Getting started\n\n**ATTENTION**: Make sure to use react-native 0.57.0 or a greater version\n\n#### react-native version 0.57.4 or greater\n\n`$ npm install react-native-nested-scroll-view --save`\n\n#### react-native version 0.56.0 or bellow\n\n`$ npm install react-native-nested-scroll-view@7.0.0 --save`\n\n#### react-native versions 0.55.4 or bellow\n\n`$ npm install react-native-nested-scroll-view@6.0.1 --save`\n\n### Manual link\n\nMainApplication.java\n\n```diff\n\n+   import com.rnnestedscrollview.RNNestedScrollViewPackage;\n\n    public class MainApplication extends Application implements ReactApplication {\n\n      @Override\n      protected List\u003cReactPackage\u003e getPackages() {\n        return Arrays.\u003cReactPackage\u003easList(\n            new MainReactPackage(),\n+           new RNNestedScrollViewPackage()\n        );\n      }\n    }\n\n```\n\nandroid/app/build.gradle\n\n\n```diff\n\n    dependencies {\n        implementation fileTree(dir: \"libs\", include: [\"*.jar\"])\n+       implementation 'com.android.support:appcompat-v7:27.1.1'\n+       implementation 'com.android.support:design:27.1.1'\n        implementation 'com.facebook.react:react-native:+'  // From node_modules\n+       implementation project(':react-native-nested-scroll-view')\n    }\n\n```\n\nandroid/settings.gradle\n\n```diff\n\ninclude ':app'\n\n+   include ':react-native-nested-scroll-view'\n+   project(':react-native-nested-scroll-view').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-nested-scroll-view/android')\n\n```\n\n# License\n\n[MIT](./LICENSE)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcesardeazevedo%2Freact-native-nested-scroll-view","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcesardeazevedo%2Freact-native-nested-scroll-view","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcesardeazevedo%2Freact-native-nested-scroll-view/lists"}