├── .buckconfig ├── .eslintrc.js ├── .flowconfig ├── .github └── ISSUE_TEMPLATE │ └── bug_report.md ├── .gitignore ├── .prettierrc.js ├── .watchmanconfig ├── Example ├── .gitignore ├── __tests__ │ └── App-test.js ├── android │ ├── app │ │ ├── BUCK │ │ ├── build.gradle │ │ ├── build_defs.bzl │ │ ├── debug.keystore │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── debug │ │ │ ├── AndroidManifest.xml │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── tabbartest │ │ │ │ └── ReactNativeFlipper.java │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── tabbartest │ │ │ │ ├── MainActivity.java │ │ │ │ └── MainApplication.java │ │ │ └── res │ │ │ ├── drawable-hdpi │ │ │ └── node_modules_reactnavigation_stack_src_views_assets_backicon.png │ │ │ ├── drawable-mdpi │ │ │ ├── node_modules_reactnavigation_stack_src_views_assets_backicon.png │ │ │ ├── node_modules_reactnavigation_stack_src_views_assets_backiconmask.png │ │ │ ├── src_resource_header_img.png │ │ │ ├── src_resource_img1.jpeg │ │ │ ├── src_resource_img10.jpeg │ │ │ ├── src_resource_img11.jpeg │ │ │ ├── src_resource_img12.jpeg │ │ │ ├── src_resource_img13.jpeg │ │ │ ├── src_resource_img14.jpeg │ │ │ ├── src_resource_img15.jpeg │ │ │ ├── src_resource_img2.jpeg │ │ │ ├── src_resource_img3.jpeg │ │ │ ├── src_resource_img4.jpeg │ │ │ ├── src_resource_img5.jpeg │ │ │ ├── src_resource_img6.jpeg │ │ │ ├── src_resource_img7.jpeg │ │ │ ├── src_resource_img8.jpeg │ │ │ ├── src_resource_img9.jpg │ │ │ ├── src_resource_tab1.png │ │ │ ├── src_resource_tab2.png │ │ │ └── src_resource_tab3.png │ │ │ ├── drawable-xhdpi │ │ │ └── node_modules_reactnavigation_stack_src_views_assets_backicon.png │ │ │ ├── drawable-xxhdpi │ │ │ └── node_modules_reactnavigation_stack_src_views_assets_backicon.png │ │ │ ├── drawable-xxxhdpi │ │ │ └── node_modules_reactnavigation_stack_src_views_assets_backicon.png │ │ │ ├── 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 │ │ │ ├── raw │ │ │ └── app.json │ │ │ └── values │ │ │ ├── strings.xml │ │ │ └── styles.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── app.json ├── assetsTransformer.js ├── babel.config.js ├── index.js ├── ios │ ├── Podfile │ ├── TabBarTest-tvOS │ │ └── Info.plist │ ├── TabBarTest-tvOSTests │ │ └── Info.plist │ ├── TabBarTest.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── TabBarTest-tvOS.xcscheme │ │ │ └── TabBarTest.xcscheme │ ├── TabBarTest.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ ├── TabBarTest │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Images.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Info.plist │ │ ├── LaunchScreen.storyboard │ │ └── main.m │ └── TabBarTestTests │ │ ├── Info.plist │ │ └── TabBarTestTests.m ├── jest.config.js ├── metro.config.js ├── package-lock.json ├── package.json ├── react-native-head-tab-view │ ├── GestureContainer.tsx │ ├── HeaderContext.tsx │ ├── README.md │ ├── RefreshControlContainer.tsx │ ├── createCollapsibleScrollView.tsx │ ├── hook.tsx │ ├── index.d.ts │ ├── index.js │ ├── package.json │ ├── types.tsx │ └── utils.tsx ├── react-native-scrollable-tab-view-collapsible-header │ ├── CollapsibleHeaderTabView.tsx │ ├── README.md │ ├── createHeaderTabsComponent.tsx │ ├── index.d.ts │ ├── index.js │ └── package.json ├── react-native-tab-view-collapsible-header │ ├── CollapsibleHeaderTabView.tsx │ ├── README.md │ ├── createHeaderTabsComponent.tsx │ ├── index.d.ts │ ├── index.js │ └── package.json ├── src │ ├── Example.tsx │ ├── ExampleBasic.tsx │ ├── ExampleCarouselHeader.tsx │ ├── ExampleCustomTabbar.tsx │ ├── ExampleHeaderAnimated.tsx │ ├── ExampleWithPullRefresh.tsx │ ├── ExampleWithTabViewPullRefresh.tsx │ ├── MainScreen.tsx │ ├── component │ │ ├── CustomRefreshControl.tsx │ │ ├── FlatListPage.tsx │ │ ├── ScrollViewPage.tsx │ │ ├── SectionListPage.tsx │ │ ├── TabViewBase.tsx │ │ ├── TestScrollView.tsx │ │ └── index.ts │ ├── config │ │ ├── NavigationService.js │ │ ├── getScreenOptions.js │ │ └── staticData.ts │ ├── hook.tsx │ ├── resource │ │ ├── header_icon.png │ │ ├── header_img.png │ │ ├── img1.jpeg │ │ ├── img10.jpeg │ │ ├── img11.jpeg │ │ ├── img12.jpeg │ │ ├── img13.jpeg │ │ ├── img14.jpeg │ │ ├── img15.jpeg │ │ ├── img2.jpeg │ │ ├── img3.jpeg │ │ ├── img4.jpeg │ │ ├── img5.jpeg │ │ ├── img6.jpeg │ │ ├── img7.jpeg │ │ ├── img8.jpeg │ │ ├── img9.jpg │ │ ├── refresh.png │ │ ├── tab1.png │ │ ├── tab2.png │ │ └── tab3.png │ ├── styles │ │ └── index.ts │ ├── types.ts │ └── wdyr.ts └── tsconfig.json ├── README.md └── demoGIF └── demo_ios.gif /.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/.buckconfig -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | extends: '@react-native-community', 4 | }; 5 | -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/.flowconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /Example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/Example/.gitignore -------------------------------------------------------------------------------- /Example/__tests__/App-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/Example/__tests__/App-test.js -------------------------------------------------------------------------------- /Example/android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/Example/android/app/BUCK -------------------------------------------------------------------------------- /Example/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/Example/android/app/build.gradle -------------------------------------------------------------------------------- /Example/android/app/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/Example/android/app/build_defs.bzl -------------------------------------------------------------------------------- /Example/android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/Example/android/app/debug.keystore -------------------------------------------------------------------------------- /Example/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/Example/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /Example/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/Example/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /Example/android/app/src/debug/java/com/tabbartest/ReactNativeFlipper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/Example/android/app/src/debug/java/com/tabbartest/ReactNativeFlipper.java -------------------------------------------------------------------------------- /Example/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/Example/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Example/android/app/src/main/java/com/tabbartest/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/Example/android/app/src/main/java/com/tabbartest/MainActivity.java -------------------------------------------------------------------------------- /Example/android/app/src/main/java/com/tabbartest/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/Example/android/app/src/main/java/com/tabbartest/MainApplication.java -------------------------------------------------------------------------------- /Example/android/app/src/main/res/drawable-hdpi/node_modules_reactnavigation_stack_src_views_assets_backicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/Example/android/app/src/main/res/drawable-hdpi/node_modules_reactnavigation_stack_src_views_assets_backicon.png -------------------------------------------------------------------------------- /Example/android/app/src/main/res/drawable-mdpi/node_modules_reactnavigation_stack_src_views_assets_backicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/Example/android/app/src/main/res/drawable-mdpi/node_modules_reactnavigation_stack_src_views_assets_backicon.png -------------------------------------------------------------------------------- /Example/android/app/src/main/res/drawable-mdpi/node_modules_reactnavigation_stack_src_views_assets_backiconmask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/Example/android/app/src/main/res/drawable-mdpi/node_modules_reactnavigation_stack_src_views_assets_backiconmask.png -------------------------------------------------------------------------------- /Example/android/app/src/main/res/drawable-mdpi/src_resource_header_img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/Example/android/app/src/main/res/drawable-mdpi/src_resource_header_img.png -------------------------------------------------------------------------------- /Example/android/app/src/main/res/drawable-mdpi/src_resource_img1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/Example/android/app/src/main/res/drawable-mdpi/src_resource_img1.jpeg -------------------------------------------------------------------------------- /Example/android/app/src/main/res/drawable-mdpi/src_resource_img10.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/Example/android/app/src/main/res/drawable-mdpi/src_resource_img10.jpeg -------------------------------------------------------------------------------- /Example/android/app/src/main/res/drawable-mdpi/src_resource_img11.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/Example/android/app/src/main/res/drawable-mdpi/src_resource_img11.jpeg -------------------------------------------------------------------------------- /Example/android/app/src/main/res/drawable-mdpi/src_resource_img12.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/Example/android/app/src/main/res/drawable-mdpi/src_resource_img12.jpeg -------------------------------------------------------------------------------- /Example/android/app/src/main/res/drawable-mdpi/src_resource_img13.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/Example/android/app/src/main/res/drawable-mdpi/src_resource_img13.jpeg -------------------------------------------------------------------------------- /Example/android/app/src/main/res/drawable-mdpi/src_resource_img14.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/Example/android/app/src/main/res/drawable-mdpi/src_resource_img14.jpeg -------------------------------------------------------------------------------- /Example/android/app/src/main/res/drawable-mdpi/src_resource_img15.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/Example/android/app/src/main/res/drawable-mdpi/src_resource_img15.jpeg -------------------------------------------------------------------------------- /Example/android/app/src/main/res/drawable-mdpi/src_resource_img2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/Example/android/app/src/main/res/drawable-mdpi/src_resource_img2.jpeg -------------------------------------------------------------------------------- /Example/android/app/src/main/res/drawable-mdpi/src_resource_img3.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/Example/android/app/src/main/res/drawable-mdpi/src_resource_img3.jpeg -------------------------------------------------------------------------------- /Example/android/app/src/main/res/drawable-mdpi/src_resource_img4.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/Example/android/app/src/main/res/drawable-mdpi/src_resource_img4.jpeg -------------------------------------------------------------------------------- /Example/android/app/src/main/res/drawable-mdpi/src_resource_img5.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/Example/android/app/src/main/res/drawable-mdpi/src_resource_img5.jpeg -------------------------------------------------------------------------------- /Example/android/app/src/main/res/drawable-mdpi/src_resource_img6.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/Example/android/app/src/main/res/drawable-mdpi/src_resource_img6.jpeg -------------------------------------------------------------------------------- /Example/android/app/src/main/res/drawable-mdpi/src_resource_img7.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/Example/android/app/src/main/res/drawable-mdpi/src_resource_img7.jpeg -------------------------------------------------------------------------------- /Example/android/app/src/main/res/drawable-mdpi/src_resource_img8.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/Example/android/app/src/main/res/drawable-mdpi/src_resource_img8.jpeg -------------------------------------------------------------------------------- /Example/android/app/src/main/res/drawable-mdpi/src_resource_img9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/Example/android/app/src/main/res/drawable-mdpi/src_resource_img9.jpg -------------------------------------------------------------------------------- /Example/android/app/src/main/res/drawable-mdpi/src_resource_tab1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/Example/android/app/src/main/res/drawable-mdpi/src_resource_tab1.png -------------------------------------------------------------------------------- /Example/android/app/src/main/res/drawable-mdpi/src_resource_tab2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/Example/android/app/src/main/res/drawable-mdpi/src_resource_tab2.png -------------------------------------------------------------------------------- /Example/android/app/src/main/res/drawable-mdpi/src_resource_tab3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/Example/android/app/src/main/res/drawable-mdpi/src_resource_tab3.png -------------------------------------------------------------------------------- /Example/android/app/src/main/res/drawable-xhdpi/node_modules_reactnavigation_stack_src_views_assets_backicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/Example/android/app/src/main/res/drawable-xhdpi/node_modules_reactnavigation_stack_src_views_assets_backicon.png -------------------------------------------------------------------------------- /Example/android/app/src/main/res/drawable-xxhdpi/node_modules_reactnavigation_stack_src_views_assets_backicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/Example/android/app/src/main/res/drawable-xxhdpi/node_modules_reactnavigation_stack_src_views_assets_backicon.png -------------------------------------------------------------------------------- /Example/android/app/src/main/res/drawable-xxxhdpi/node_modules_reactnavigation_stack_src_views_assets_backicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/Example/android/app/src/main/res/drawable-xxxhdpi/node_modules_reactnavigation_stack_src_views_assets_backicon.png -------------------------------------------------------------------------------- /Example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/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/zyslife/react-native-head-tab-view/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/zyslife/react-native-head-tab-view/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/zyslife/react-native-head-tab-view/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/zyslife/react-native-head-tab-view/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/zyslife/react-native-head-tab-view/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/zyslife/react-native-head-tab-view/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/zyslife/react-native-head-tab-view/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/zyslife/react-native-head-tab-view/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/zyslife/react-native-head-tab-view/HEAD/Example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Example/android/app/src/main/res/raw/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/Example/android/app/src/main/res/raw/app.json -------------------------------------------------------------------------------- /Example/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/Example/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /Example/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/Example/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /Example/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/Example/android/build.gradle -------------------------------------------------------------------------------- /Example/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/Example/android/gradle.properties -------------------------------------------------------------------------------- /Example/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/Example/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Example/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/Example/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Example/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/Example/android/gradlew -------------------------------------------------------------------------------- /Example/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/Example/android/gradlew.bat -------------------------------------------------------------------------------- /Example/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/Example/android/settings.gradle -------------------------------------------------------------------------------- /Example/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/Example/app.json -------------------------------------------------------------------------------- /Example/assetsTransformer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/Example/assetsTransformer.js -------------------------------------------------------------------------------- /Example/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/Example/babel.config.js -------------------------------------------------------------------------------- /Example/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/Example/index.js -------------------------------------------------------------------------------- /Example/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/Example/ios/Podfile -------------------------------------------------------------------------------- /Example/ios/TabBarTest-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/Example/ios/TabBarTest-tvOS/Info.plist -------------------------------------------------------------------------------- /Example/ios/TabBarTest-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/Example/ios/TabBarTest-tvOSTests/Info.plist -------------------------------------------------------------------------------- /Example/ios/TabBarTest.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/Example/ios/TabBarTest.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/ios/TabBarTest.xcodeproj/xcshareddata/xcschemes/TabBarTest-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/Example/ios/TabBarTest.xcodeproj/xcshareddata/xcschemes/TabBarTest-tvOS.xcscheme -------------------------------------------------------------------------------- /Example/ios/TabBarTest.xcodeproj/xcshareddata/xcschemes/TabBarTest.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/Example/ios/TabBarTest.xcodeproj/xcshareddata/xcschemes/TabBarTest.xcscheme -------------------------------------------------------------------------------- /Example/ios/TabBarTest.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/Example/ios/TabBarTest.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/ios/TabBarTest.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/Example/ios/TabBarTest.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/ios/TabBarTest/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/Example/ios/TabBarTest/AppDelegate.h -------------------------------------------------------------------------------- /Example/ios/TabBarTest/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/Example/ios/TabBarTest/AppDelegate.m -------------------------------------------------------------------------------- /Example/ios/TabBarTest/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/Example/ios/TabBarTest/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/ios/TabBarTest/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/Example/ios/TabBarTest/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /Example/ios/TabBarTest/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/Example/ios/TabBarTest/Info.plist -------------------------------------------------------------------------------- /Example/ios/TabBarTest/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/Example/ios/TabBarTest/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Example/ios/TabBarTest/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/Example/ios/TabBarTest/main.m -------------------------------------------------------------------------------- /Example/ios/TabBarTestTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/Example/ios/TabBarTestTests/Info.plist -------------------------------------------------------------------------------- /Example/ios/TabBarTestTests/TabBarTestTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/Example/ios/TabBarTestTests/TabBarTestTests.m -------------------------------------------------------------------------------- /Example/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/Example/jest.config.js -------------------------------------------------------------------------------- /Example/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/Example/metro.config.js -------------------------------------------------------------------------------- /Example/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/Example/package-lock.json -------------------------------------------------------------------------------- /Example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/Example/package.json -------------------------------------------------------------------------------- /Example/react-native-head-tab-view/GestureContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/Example/react-native-head-tab-view/GestureContainer.tsx -------------------------------------------------------------------------------- /Example/react-native-head-tab-view/HeaderContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/Example/react-native-head-tab-view/HeaderContext.tsx -------------------------------------------------------------------------------- /Example/react-native-head-tab-view/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/Example/react-native-head-tab-view/README.md -------------------------------------------------------------------------------- /Example/react-native-head-tab-view/RefreshControlContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/Example/react-native-head-tab-view/RefreshControlContainer.tsx -------------------------------------------------------------------------------- /Example/react-native-head-tab-view/createCollapsibleScrollView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/Example/react-native-head-tab-view/createCollapsibleScrollView.tsx -------------------------------------------------------------------------------- /Example/react-native-head-tab-view/hook.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/Example/react-native-head-tab-view/hook.tsx -------------------------------------------------------------------------------- /Example/react-native-head-tab-view/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/Example/react-native-head-tab-view/index.d.ts -------------------------------------------------------------------------------- /Example/react-native-head-tab-view/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/Example/react-native-head-tab-view/index.js -------------------------------------------------------------------------------- /Example/react-native-head-tab-view/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/Example/react-native-head-tab-view/package.json -------------------------------------------------------------------------------- /Example/react-native-head-tab-view/types.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/Example/react-native-head-tab-view/types.tsx -------------------------------------------------------------------------------- /Example/react-native-head-tab-view/utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/Example/react-native-head-tab-view/utils.tsx -------------------------------------------------------------------------------- /Example/react-native-scrollable-tab-view-collapsible-header/CollapsibleHeaderTabView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/Example/react-native-scrollable-tab-view-collapsible-header/CollapsibleHeaderTabView.tsx -------------------------------------------------------------------------------- /Example/react-native-scrollable-tab-view-collapsible-header/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/Example/react-native-scrollable-tab-view-collapsible-header/README.md -------------------------------------------------------------------------------- /Example/react-native-scrollable-tab-view-collapsible-header/createHeaderTabsComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/Example/react-native-scrollable-tab-view-collapsible-header/createHeaderTabsComponent.tsx -------------------------------------------------------------------------------- /Example/react-native-scrollable-tab-view-collapsible-header/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/Example/react-native-scrollable-tab-view-collapsible-header/index.d.ts -------------------------------------------------------------------------------- /Example/react-native-scrollable-tab-view-collapsible-header/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/Example/react-native-scrollable-tab-view-collapsible-header/index.js -------------------------------------------------------------------------------- /Example/react-native-scrollable-tab-view-collapsible-header/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/Example/react-native-scrollable-tab-view-collapsible-header/package.json -------------------------------------------------------------------------------- /Example/react-native-tab-view-collapsible-header/CollapsibleHeaderTabView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/Example/react-native-tab-view-collapsible-header/CollapsibleHeaderTabView.tsx -------------------------------------------------------------------------------- /Example/react-native-tab-view-collapsible-header/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/Example/react-native-tab-view-collapsible-header/README.md -------------------------------------------------------------------------------- /Example/react-native-tab-view-collapsible-header/createHeaderTabsComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/Example/react-native-tab-view-collapsible-header/createHeaderTabsComponent.tsx -------------------------------------------------------------------------------- /Example/react-native-tab-view-collapsible-header/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/Example/react-native-tab-view-collapsible-header/index.d.ts -------------------------------------------------------------------------------- /Example/react-native-tab-view-collapsible-header/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/Example/react-native-tab-view-collapsible-header/index.js -------------------------------------------------------------------------------- /Example/react-native-tab-view-collapsible-header/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/Example/react-native-tab-view-collapsible-header/package.json -------------------------------------------------------------------------------- /Example/src/Example.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/Example/src/Example.tsx -------------------------------------------------------------------------------- /Example/src/ExampleBasic.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/Example/src/ExampleBasic.tsx -------------------------------------------------------------------------------- /Example/src/ExampleCarouselHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/Example/src/ExampleCarouselHeader.tsx -------------------------------------------------------------------------------- /Example/src/ExampleCustomTabbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/Example/src/ExampleCustomTabbar.tsx -------------------------------------------------------------------------------- /Example/src/ExampleHeaderAnimated.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/Example/src/ExampleHeaderAnimated.tsx -------------------------------------------------------------------------------- /Example/src/ExampleWithPullRefresh.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/Example/src/ExampleWithPullRefresh.tsx -------------------------------------------------------------------------------- /Example/src/ExampleWithTabViewPullRefresh.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/Example/src/ExampleWithTabViewPullRefresh.tsx -------------------------------------------------------------------------------- /Example/src/MainScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/Example/src/MainScreen.tsx -------------------------------------------------------------------------------- /Example/src/component/CustomRefreshControl.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/Example/src/component/CustomRefreshControl.tsx -------------------------------------------------------------------------------- /Example/src/component/FlatListPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/Example/src/component/FlatListPage.tsx -------------------------------------------------------------------------------- /Example/src/component/ScrollViewPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/Example/src/component/ScrollViewPage.tsx -------------------------------------------------------------------------------- /Example/src/component/SectionListPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/Example/src/component/SectionListPage.tsx -------------------------------------------------------------------------------- /Example/src/component/TabViewBase.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/Example/src/component/TabViewBase.tsx -------------------------------------------------------------------------------- /Example/src/component/TestScrollView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/Example/src/component/TestScrollView.tsx -------------------------------------------------------------------------------- /Example/src/component/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/Example/src/component/index.ts -------------------------------------------------------------------------------- /Example/src/config/NavigationService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/Example/src/config/NavigationService.js -------------------------------------------------------------------------------- /Example/src/config/getScreenOptions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/Example/src/config/getScreenOptions.js -------------------------------------------------------------------------------- /Example/src/config/staticData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/Example/src/config/staticData.ts -------------------------------------------------------------------------------- /Example/src/hook.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/Example/src/hook.tsx -------------------------------------------------------------------------------- /Example/src/resource/header_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/Example/src/resource/header_icon.png -------------------------------------------------------------------------------- /Example/src/resource/header_img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/Example/src/resource/header_img.png -------------------------------------------------------------------------------- /Example/src/resource/img1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/Example/src/resource/img1.jpeg -------------------------------------------------------------------------------- /Example/src/resource/img10.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/Example/src/resource/img10.jpeg -------------------------------------------------------------------------------- /Example/src/resource/img11.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/Example/src/resource/img11.jpeg -------------------------------------------------------------------------------- /Example/src/resource/img12.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/Example/src/resource/img12.jpeg -------------------------------------------------------------------------------- /Example/src/resource/img13.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/Example/src/resource/img13.jpeg -------------------------------------------------------------------------------- /Example/src/resource/img14.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/Example/src/resource/img14.jpeg -------------------------------------------------------------------------------- /Example/src/resource/img15.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/Example/src/resource/img15.jpeg -------------------------------------------------------------------------------- /Example/src/resource/img2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/Example/src/resource/img2.jpeg -------------------------------------------------------------------------------- /Example/src/resource/img3.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/Example/src/resource/img3.jpeg -------------------------------------------------------------------------------- /Example/src/resource/img4.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/Example/src/resource/img4.jpeg -------------------------------------------------------------------------------- /Example/src/resource/img5.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/Example/src/resource/img5.jpeg -------------------------------------------------------------------------------- /Example/src/resource/img6.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/Example/src/resource/img6.jpeg -------------------------------------------------------------------------------- /Example/src/resource/img7.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/Example/src/resource/img7.jpeg -------------------------------------------------------------------------------- /Example/src/resource/img8.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/Example/src/resource/img8.jpeg -------------------------------------------------------------------------------- /Example/src/resource/img9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/Example/src/resource/img9.jpg -------------------------------------------------------------------------------- /Example/src/resource/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/Example/src/resource/refresh.png -------------------------------------------------------------------------------- /Example/src/resource/tab1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/Example/src/resource/tab1.png -------------------------------------------------------------------------------- /Example/src/resource/tab2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/Example/src/resource/tab2.png -------------------------------------------------------------------------------- /Example/src/resource/tab3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/Example/src/resource/tab3.png -------------------------------------------------------------------------------- /Example/src/styles/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/Example/src/styles/index.ts -------------------------------------------------------------------------------- /Example/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/Example/src/types.ts -------------------------------------------------------------------------------- /Example/src/wdyr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/Example/src/wdyr.ts -------------------------------------------------------------------------------- /Example/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/Example/tsconfig.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/README.md -------------------------------------------------------------------------------- /demoGIF/demo_ios.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zyslife/react-native-head-tab-view/HEAD/demoGIF/demo_ios.gif --------------------------------------------------------------------------------