├── .eslintrc.js ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── question-or-discussion.md └── workflows │ └── build.yml ├── .gitignore ├── .prettierrc ├── .vscode └── settings.json ├── LICENSE ├── Makefile ├── README.md ├── docs ├── demo-sample-background.gif ├── demo-sample-custom.gif ├── demo-sample-default.gif ├── demo-sample-sticky.gif └── demo-sample-subheader.gif ├── example ├── .buckconfig ├── .editorconfig ├── .eslintrc.js ├── .gitattributes ├── .gitignore ├── .prettierrc.js ├── .watchmanconfig ├── App.tsx ├── __tests__ │ └── App-test.tsx ├── android │ ├── app │ │ ├── _BUCK │ │ ├── build.gradle │ │ ├── build_defs.bzl │ │ ├── debug.keystore │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── debug │ │ │ ├── AndroidManifest.xml │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── ReactNativeFlipper.java │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ ├── MainActivity.java │ │ │ │ └── MainApplication.java │ │ │ └── res │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ ├── strings.xml │ │ │ └── styles.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── app.json ├── babel.config.js ├── index.js ├── ios │ ├── Podfile │ ├── Podfile.lock │ ├── example.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── example.xcscheme │ ├── example.xcworkspace │ │ └── contents.xcworkspacedata │ ├── example │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Images.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Info.plist │ │ ├── LaunchScreen.storyboard │ │ └── main.m │ └── exampleTests │ │ ├── Info.plist │ │ └── exampleTests.m ├── metro.config.js ├── package.json ├── src │ ├── BackgroundHeaderScreen.tsx │ ├── CustomHeaderScreen.tsx │ ├── DefaultHeaderScreen.tsx │ ├── DetailScreen.tsx │ ├── Row.tsx │ ├── ShowHeaderScreen.tsx │ ├── StickyHeaderScreen.tsx │ └── SubHeaderScreen.tsx ├── tsconfig.json └── yarn.lock ├── flow.sh ├── index.ts ├── package.json ├── src ├── CollapsibleSubHeaderAnimator.tsx ├── core.tsx ├── createCollapsibleCustomHeaderAnimator.tsx ├── createHeaderBackground.tsx └── utils.ts ├── tsconfig.json └── yarn.lock /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benevbright/react-navigation-collapsible/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benevbright/react-navigation-collapsible/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benevbright/react-navigation-collapsible/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question-or-discussion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benevbright/react-navigation-collapsible/HEAD/.github/ISSUE_TEMPLATE/question-or-discussion.md -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benevbright/react-navigation-collapsible/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # OSX 2 | # 3 | .DS_Store 4 | 5 | node_modules/ 6 | lib/ -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benevbright/react-navigation-collapsible/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "editor.formatOnSave": true 3 | } 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benevbright/react-navigation-collapsible/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benevbright/react-navigation-collapsible/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benevbright/react-navigation-collapsible/HEAD/README.md -------------------------------------------------------------------------------- /docs/demo-sample-background.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benevbright/react-navigation-collapsible/HEAD/docs/demo-sample-background.gif -------------------------------------------------------------------------------- /docs/demo-sample-custom.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benevbright/react-navigation-collapsible/HEAD/docs/demo-sample-custom.gif -------------------------------------------------------------------------------- /docs/demo-sample-default.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benevbright/react-navigation-collapsible/HEAD/docs/demo-sample-default.gif -------------------------------------------------------------------------------- /docs/demo-sample-sticky.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benevbright/react-navigation-collapsible/HEAD/docs/demo-sample-sticky.gif -------------------------------------------------------------------------------- /docs/demo-sample-subheader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benevbright/react-navigation-collapsible/HEAD/docs/demo-sample-subheader.gif -------------------------------------------------------------------------------- /example/.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benevbright/react-navigation-collapsible/HEAD/example/.buckconfig -------------------------------------------------------------------------------- /example/.editorconfig: -------------------------------------------------------------------------------- 1 | # Windows files 2 | [*.bat] 3 | end_of_line = crlf 4 | -------------------------------------------------------------------------------- /example/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | extends: '@react-native-community', 4 | }; 5 | -------------------------------------------------------------------------------- /example/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benevbright/react-navigation-collapsible/HEAD/example/.gitattributes -------------------------------------------------------------------------------- /example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benevbright/react-navigation-collapsible/HEAD/example/.gitignore -------------------------------------------------------------------------------- /example/.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benevbright/react-navigation-collapsible/HEAD/example/.prettierrc.js -------------------------------------------------------------------------------- /example/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /example/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benevbright/react-navigation-collapsible/HEAD/example/App.tsx -------------------------------------------------------------------------------- /example/__tests__/App-test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benevbright/react-navigation-collapsible/HEAD/example/__tests__/App-test.tsx -------------------------------------------------------------------------------- /example/android/app/_BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benevbright/react-navigation-collapsible/HEAD/example/android/app/_BUCK -------------------------------------------------------------------------------- /example/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benevbright/react-navigation-collapsible/HEAD/example/android/app/build.gradle -------------------------------------------------------------------------------- /example/android/app/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benevbright/react-navigation-collapsible/HEAD/example/android/app/build_defs.bzl -------------------------------------------------------------------------------- /example/android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benevbright/react-navigation-collapsible/HEAD/example/android/app/debug.keystore -------------------------------------------------------------------------------- /example/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benevbright/react-navigation-collapsible/HEAD/example/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /example/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benevbright/react-navigation-collapsible/HEAD/example/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/app/src/debug/java/com/example/ReactNativeFlipper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benevbright/react-navigation-collapsible/HEAD/example/android/app/src/debug/java/com/example/ReactNativeFlipper.java -------------------------------------------------------------------------------- /example/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benevbright/react-navigation-collapsible/HEAD/example/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/app/src/main/java/com/example/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benevbright/react-navigation-collapsible/HEAD/example/android/app/src/main/java/com/example/MainActivity.java -------------------------------------------------------------------------------- /example/android/app/src/main/java/com/example/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benevbright/react-navigation-collapsible/HEAD/example/android/app/src/main/java/com/example/MainApplication.java -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benevbright/react-navigation-collapsible/HEAD/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benevbright/react-navigation-collapsible/HEAD/example/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benevbright/react-navigation-collapsible/HEAD/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benevbright/react-navigation-collapsible/HEAD/example/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benevbright/react-navigation-collapsible/HEAD/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benevbright/react-navigation-collapsible/HEAD/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benevbright/react-navigation-collapsible/HEAD/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benevbright/react-navigation-collapsible/HEAD/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benevbright/react-navigation-collapsible/HEAD/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benevbright/react-navigation-collapsible/HEAD/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benevbright/react-navigation-collapsible/HEAD/example/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benevbright/react-navigation-collapsible/HEAD/example/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /example/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benevbright/react-navigation-collapsible/HEAD/example/android/build.gradle -------------------------------------------------------------------------------- /example/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benevbright/react-navigation-collapsible/HEAD/example/android/gradle.properties -------------------------------------------------------------------------------- /example/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benevbright/react-navigation-collapsible/HEAD/example/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /example/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benevbright/react-navigation-collapsible/HEAD/example/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /example/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benevbright/react-navigation-collapsible/HEAD/example/android/gradlew -------------------------------------------------------------------------------- /example/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benevbright/react-navigation-collapsible/HEAD/example/android/gradlew.bat -------------------------------------------------------------------------------- /example/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benevbright/react-navigation-collapsible/HEAD/example/android/settings.gradle -------------------------------------------------------------------------------- /example/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benevbright/react-navigation-collapsible/HEAD/example/app.json -------------------------------------------------------------------------------- /example/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benevbright/react-navigation-collapsible/HEAD/example/babel.config.js -------------------------------------------------------------------------------- /example/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benevbright/react-navigation-collapsible/HEAD/example/index.js -------------------------------------------------------------------------------- /example/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benevbright/react-navigation-collapsible/HEAD/example/ios/Podfile -------------------------------------------------------------------------------- /example/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benevbright/react-navigation-collapsible/HEAD/example/ios/Podfile.lock -------------------------------------------------------------------------------- /example/ios/example.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benevbright/react-navigation-collapsible/HEAD/example/ios/example.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example/ios/example.xcodeproj/xcshareddata/xcschemes/example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benevbright/react-navigation-collapsible/HEAD/example/ios/example.xcodeproj/xcshareddata/xcschemes/example.xcscheme -------------------------------------------------------------------------------- /example/ios/example.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benevbright/react-navigation-collapsible/HEAD/example/ios/example.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example/ios/example/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benevbright/react-navigation-collapsible/HEAD/example/ios/example/AppDelegate.h -------------------------------------------------------------------------------- /example/ios/example/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benevbright/react-navigation-collapsible/HEAD/example/ios/example/AppDelegate.m -------------------------------------------------------------------------------- /example/ios/example/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benevbright/react-navigation-collapsible/HEAD/example/ios/example/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /example/ios/example/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benevbright/react-navigation-collapsible/HEAD/example/ios/example/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /example/ios/example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benevbright/react-navigation-collapsible/HEAD/example/ios/example/Info.plist -------------------------------------------------------------------------------- /example/ios/example/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benevbright/react-navigation-collapsible/HEAD/example/ios/example/LaunchScreen.storyboard -------------------------------------------------------------------------------- /example/ios/example/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benevbright/react-navigation-collapsible/HEAD/example/ios/example/main.m -------------------------------------------------------------------------------- /example/ios/exampleTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benevbright/react-navigation-collapsible/HEAD/example/ios/exampleTests/Info.plist -------------------------------------------------------------------------------- /example/ios/exampleTests/exampleTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benevbright/react-navigation-collapsible/HEAD/example/ios/exampleTests/exampleTests.m -------------------------------------------------------------------------------- /example/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benevbright/react-navigation-collapsible/HEAD/example/metro.config.js -------------------------------------------------------------------------------- /example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benevbright/react-navigation-collapsible/HEAD/example/package.json -------------------------------------------------------------------------------- /example/src/BackgroundHeaderScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benevbright/react-navigation-collapsible/HEAD/example/src/BackgroundHeaderScreen.tsx -------------------------------------------------------------------------------- /example/src/CustomHeaderScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benevbright/react-navigation-collapsible/HEAD/example/src/CustomHeaderScreen.tsx -------------------------------------------------------------------------------- /example/src/DefaultHeaderScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benevbright/react-navigation-collapsible/HEAD/example/src/DefaultHeaderScreen.tsx -------------------------------------------------------------------------------- /example/src/DetailScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benevbright/react-navigation-collapsible/HEAD/example/src/DetailScreen.tsx -------------------------------------------------------------------------------- /example/src/Row.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benevbright/react-navigation-collapsible/HEAD/example/src/Row.tsx -------------------------------------------------------------------------------- /example/src/ShowHeaderScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benevbright/react-navigation-collapsible/HEAD/example/src/ShowHeaderScreen.tsx -------------------------------------------------------------------------------- /example/src/StickyHeaderScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benevbright/react-navigation-collapsible/HEAD/example/src/StickyHeaderScreen.tsx -------------------------------------------------------------------------------- /example/src/SubHeaderScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benevbright/react-navigation-collapsible/HEAD/example/src/SubHeaderScreen.tsx -------------------------------------------------------------------------------- /example/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benevbright/react-navigation-collapsible/HEAD/example/tsconfig.json -------------------------------------------------------------------------------- /example/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benevbright/react-navigation-collapsible/HEAD/example/yarn.lock -------------------------------------------------------------------------------- /flow.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benevbright/react-navigation-collapsible/HEAD/flow.sh -------------------------------------------------------------------------------- /index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benevbright/react-navigation-collapsible/HEAD/index.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benevbright/react-navigation-collapsible/HEAD/package.json -------------------------------------------------------------------------------- /src/CollapsibleSubHeaderAnimator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benevbright/react-navigation-collapsible/HEAD/src/CollapsibleSubHeaderAnimator.tsx -------------------------------------------------------------------------------- /src/core.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benevbright/react-navigation-collapsible/HEAD/src/core.tsx -------------------------------------------------------------------------------- /src/createCollapsibleCustomHeaderAnimator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benevbright/react-navigation-collapsible/HEAD/src/createCollapsibleCustomHeaderAnimator.tsx -------------------------------------------------------------------------------- /src/createHeaderBackground.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benevbright/react-navigation-collapsible/HEAD/src/createHeaderBackground.tsx -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benevbright/react-navigation-collapsible/HEAD/src/utils.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benevbright/react-navigation-collapsible/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benevbright/react-navigation-collapsible/HEAD/yarn.lock --------------------------------------------------------------------------------