├── .buckconfig ├── .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 │ │ │ └── reactnativesectionlisttabbar │ │ │ └── ReactNativeFlipper.java │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── reactnativesectionlisttabbar │ │ │ ├── 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 ├── ReactNativeSectionListTabBar-tvOS │ └── Info.plist ├── ReactNativeSectionListTabBar-tvOSTests │ └── Info.plist ├── ReactNativeSectionListTabBar.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── ReactNativeSectionListTabBar-tvOS.xcscheme │ │ └── ReactNativeSectionListTabBar.xcscheme ├── ReactNativeSectionListTabBar.xcworkspace │ └── contents.xcworkspacedata ├── ReactNativeSectionListTabBar │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Info.plist │ ├── LaunchScreen.storyboard │ └── main.m └── ReactNativeSectionListTabBarTests │ ├── Info.plist │ └── ReactNativeSectionListTabBarTests.m ├── metro.config.js ├── package.json ├── readme.md ├── src ├── assets │ └── images │ │ ├── banhmi.jpg │ │ ├── cover.jpg │ │ └── demo.gif ├── components │ ├── DishItem │ │ ├── DishItem.tsx │ │ ├── index.ts │ │ └── styles.ts │ └── TabSectionList │ │ ├── TabBar.tsx │ │ ├── TabSectionList.tsx │ │ ├── index.ts │ │ └── styles.ts └── data │ └── mock-data.ts ├── tsconfig.json └── yarn.lock /.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nphivu414/react-native-section-list-tab-bar/HEAD/.buckconfig -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nphivu414/react-native-section-list-tab-bar/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nphivu414/react-native-section-list-tab-bar/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nphivu414/react-native-section-list-tab-bar/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nphivu414/react-native-section-list-tab-bar/HEAD/App.tsx -------------------------------------------------------------------------------- /__tests__/App-test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nphivu414/react-native-section-list-tab-bar/HEAD/__tests__/App-test.tsx -------------------------------------------------------------------------------- /android/app/_BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nphivu414/react-native-section-list-tab-bar/HEAD/android/app/_BUCK -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nphivu414/react-native-section-list-tab-bar/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nphivu414/react-native-section-list-tab-bar/HEAD/android/app/build_defs.bzl -------------------------------------------------------------------------------- /android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nphivu414/react-native-section-list-tab-bar/HEAD/android/app/debug.keystore -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nphivu414/react-native-section-list-tab-bar/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nphivu414/react-native-section-list-tab-bar/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/debug/java/com/reactnativesectionlisttabbar/ReactNativeFlipper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nphivu414/react-native-section-list-tab-bar/HEAD/android/app/src/debug/java/com/reactnativesectionlisttabbar/ReactNativeFlipper.java -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nphivu414/react-native-section-list-tab-bar/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/java/com/reactnativesectionlisttabbar/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nphivu414/react-native-section-list-tab-bar/HEAD/android/app/src/main/java/com/reactnativesectionlisttabbar/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/reactnativesectionlisttabbar/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nphivu414/react-native-section-list-tab-bar/HEAD/android/app/src/main/java/com/reactnativesectionlisttabbar/MainApplication.java -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nphivu414/react-native-section-list-tab-bar/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nphivu414/react-native-section-list-tab-bar/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nphivu414/react-native-section-list-tab-bar/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nphivu414/react-native-section-list-tab-bar/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nphivu414/react-native-section-list-tab-bar/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nphivu414/react-native-section-list-tab-bar/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nphivu414/react-native-section-list-tab-bar/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nphivu414/react-native-section-list-tab-bar/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nphivu414/react-native-section-list-tab-bar/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nphivu414/react-native-section-list-tab-bar/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nphivu414/react-native-section-list-tab-bar/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nphivu414/react-native-section-list-tab-bar/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nphivu414/react-native-section-list-tab-bar/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nphivu414/react-native-section-list-tab-bar/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nphivu414/react-native-section-list-tab-bar/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nphivu414/react-native-section-list-tab-bar/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nphivu414/react-native-section-list-tab-bar/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nphivu414/react-native-section-list-tab-bar/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nphivu414/react-native-section-list-tab-bar/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nphivu414/react-native-section-list-tab-bar/HEAD/app.json -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nphivu414/react-native-section-list-tab-bar/HEAD/babel.config.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nphivu414/react-native-section-list-tab-bar/HEAD/index.js -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nphivu414/react-native-section-list-tab-bar/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nphivu414/react-native-section-list-tab-bar/HEAD/ios/Podfile.lock -------------------------------------------------------------------------------- /ios/ReactNativeSectionListTabBar-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nphivu414/react-native-section-list-tab-bar/HEAD/ios/ReactNativeSectionListTabBar-tvOS/Info.plist -------------------------------------------------------------------------------- /ios/ReactNativeSectionListTabBar-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nphivu414/react-native-section-list-tab-bar/HEAD/ios/ReactNativeSectionListTabBar-tvOSTests/Info.plist -------------------------------------------------------------------------------- /ios/ReactNativeSectionListTabBar.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nphivu414/react-native-section-list-tab-bar/HEAD/ios/ReactNativeSectionListTabBar.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/ReactNativeSectionListTabBar.xcodeproj/xcshareddata/xcschemes/ReactNativeSectionListTabBar-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nphivu414/react-native-section-list-tab-bar/HEAD/ios/ReactNativeSectionListTabBar.xcodeproj/xcshareddata/xcschemes/ReactNativeSectionListTabBar-tvOS.xcscheme -------------------------------------------------------------------------------- /ios/ReactNativeSectionListTabBar.xcodeproj/xcshareddata/xcschemes/ReactNativeSectionListTabBar.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nphivu414/react-native-section-list-tab-bar/HEAD/ios/ReactNativeSectionListTabBar.xcodeproj/xcshareddata/xcschemes/ReactNativeSectionListTabBar.xcscheme -------------------------------------------------------------------------------- /ios/ReactNativeSectionListTabBar.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nphivu414/react-native-section-list-tab-bar/HEAD/ios/ReactNativeSectionListTabBar.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/ReactNativeSectionListTabBar/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nphivu414/react-native-section-list-tab-bar/HEAD/ios/ReactNativeSectionListTabBar/AppDelegate.h -------------------------------------------------------------------------------- /ios/ReactNativeSectionListTabBar/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nphivu414/react-native-section-list-tab-bar/HEAD/ios/ReactNativeSectionListTabBar/AppDelegate.m -------------------------------------------------------------------------------- /ios/ReactNativeSectionListTabBar/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nphivu414/react-native-section-list-tab-bar/HEAD/ios/ReactNativeSectionListTabBar/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/ReactNativeSectionListTabBar/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nphivu414/react-native-section-list-tab-bar/HEAD/ios/ReactNativeSectionListTabBar/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/ReactNativeSectionListTabBar/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nphivu414/react-native-section-list-tab-bar/HEAD/ios/ReactNativeSectionListTabBar/Info.plist -------------------------------------------------------------------------------- /ios/ReactNativeSectionListTabBar/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nphivu414/react-native-section-list-tab-bar/HEAD/ios/ReactNativeSectionListTabBar/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ios/ReactNativeSectionListTabBar/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nphivu414/react-native-section-list-tab-bar/HEAD/ios/ReactNativeSectionListTabBar/main.m -------------------------------------------------------------------------------- /ios/ReactNativeSectionListTabBarTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nphivu414/react-native-section-list-tab-bar/HEAD/ios/ReactNativeSectionListTabBarTests/Info.plist -------------------------------------------------------------------------------- /ios/ReactNativeSectionListTabBarTests/ReactNativeSectionListTabBarTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nphivu414/react-native-section-list-tab-bar/HEAD/ios/ReactNativeSectionListTabBarTests/ReactNativeSectionListTabBarTests.m -------------------------------------------------------------------------------- /metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nphivu414/react-native-section-list-tab-bar/HEAD/metro.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nphivu414/react-native-section-list-tab-bar/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nphivu414/react-native-section-list-tab-bar/HEAD/readme.md -------------------------------------------------------------------------------- /src/assets/images/banhmi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nphivu414/react-native-section-list-tab-bar/HEAD/src/assets/images/banhmi.jpg -------------------------------------------------------------------------------- /src/assets/images/cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nphivu414/react-native-section-list-tab-bar/HEAD/src/assets/images/cover.jpg -------------------------------------------------------------------------------- /src/assets/images/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nphivu414/react-native-section-list-tab-bar/HEAD/src/assets/images/demo.gif -------------------------------------------------------------------------------- /src/components/DishItem/DishItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nphivu414/react-native-section-list-tab-bar/HEAD/src/components/DishItem/DishItem.tsx -------------------------------------------------------------------------------- /src/components/DishItem/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nphivu414/react-native-section-list-tab-bar/HEAD/src/components/DishItem/index.ts -------------------------------------------------------------------------------- /src/components/DishItem/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nphivu414/react-native-section-list-tab-bar/HEAD/src/components/DishItem/styles.ts -------------------------------------------------------------------------------- /src/components/TabSectionList/TabBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nphivu414/react-native-section-list-tab-bar/HEAD/src/components/TabSectionList/TabBar.tsx -------------------------------------------------------------------------------- /src/components/TabSectionList/TabSectionList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nphivu414/react-native-section-list-tab-bar/HEAD/src/components/TabSectionList/TabSectionList.tsx -------------------------------------------------------------------------------- /src/components/TabSectionList/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nphivu414/react-native-section-list-tab-bar/HEAD/src/components/TabSectionList/index.ts -------------------------------------------------------------------------------- /src/components/TabSectionList/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nphivu414/react-native-section-list-tab-bar/HEAD/src/components/TabSectionList/styles.ts -------------------------------------------------------------------------------- /src/data/mock-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nphivu414/react-native-section-list-tab-bar/HEAD/src/data/mock-data.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nphivu414/react-native-section-list-tab-bar/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nphivu414/react-native-section-list-tab-bar/HEAD/yarn.lock --------------------------------------------------------------------------------