├── .buckconfig ├── .eslintrc.js ├── .gitignore ├── .prettierrc.js ├── .watchmanconfig ├── App.tsx ├── Gemfile ├── LICENSE ├── README.md ├── __tests__ └── App-test.tsx ├── _bundle └── config ├── _ruby-version ├── android ├── app │ ├── _BUCK │ ├── build.gradle │ ├── build_defs.bzl │ ├── debug.keystore │ ├── proguard-rules.pro │ └── src │ │ ├── debug │ │ ├── AndroidManifest.xml │ │ └── java │ │ │ └── com │ │ │ └── awesometsproject │ │ │ └── ReactNativeFlipper.java │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── awesometsproject │ │ │ ├── MainActivity.java │ │ │ ├── MainApplication.java │ │ │ └── newarchitecture │ │ │ ├── MainApplicationReactNativeHost.java │ │ │ ├── components │ │ │ └── MainComponentsRegistry.java │ │ │ └── modules │ │ │ └── MainApplicationTurboModuleManagerDelegate.java │ │ ├── jni │ │ ├── Android.mk │ │ ├── MainApplicationModuleProvider.cpp │ │ ├── MainApplicationModuleProvider.h │ │ ├── MainApplicationTurboModuleManagerDelegate.cpp │ │ ├── MainApplicationTurboModuleManagerDelegate.h │ │ ├── MainComponentsRegistry.cpp │ │ ├── MainComponentsRegistry.h │ │ └── OnLoad.cpp │ │ └── res │ │ ├── drawable │ │ └── rn_edit_text_material.xml │ │ ├── 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 ├── AwesomeTSProject.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ └── AwesomeTSProject.xcscheme ├── AwesomeTSProject.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── AwesomeTSProject │ ├── AppDelegate.h │ ├── AppDelegate.mm │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Info.plist │ ├── LaunchScreen.storyboard │ └── main.m ├── AwesomeTSProjectTests │ ├── AwesomeTSProjectTests.m │ └── Info.plist ├── Podfile ├── Podfile.lock └── _xcode.env ├── metro.config.js ├── package.json ├── src └── assets │ └── lottie │ ├── chat.icon.json │ ├── home.icon.json │ ├── settings.icon.json │ └── upload.icon.json ├── tsconfig.json └── yarn.lock /.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaximilianDietel03/react-native-custom-tab-bar/HEAD/.buckconfig -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaximilianDietel03/react-native-custom-tab-bar/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaximilianDietel03/react-native-custom-tab-bar/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaximilianDietel03/react-native-custom-tab-bar/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaximilianDietel03/react-native-custom-tab-bar/HEAD/App.tsx -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaximilianDietel03/react-native-custom-tab-bar/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaximilianDietel03/react-native-custom-tab-bar/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaximilianDietel03/react-native-custom-tab-bar/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/App-test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaximilianDietel03/react-native-custom-tab-bar/HEAD/__tests__/App-test.tsx -------------------------------------------------------------------------------- /_bundle/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaximilianDietel03/react-native-custom-tab-bar/HEAD/_bundle/config -------------------------------------------------------------------------------- /_ruby-version: -------------------------------------------------------------------------------- 1 | 2.7.5 2 | -------------------------------------------------------------------------------- /android/app/_BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaximilianDietel03/react-native-custom-tab-bar/HEAD/android/app/_BUCK -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaximilianDietel03/react-native-custom-tab-bar/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaximilianDietel03/react-native-custom-tab-bar/HEAD/android/app/build_defs.bzl -------------------------------------------------------------------------------- /android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaximilianDietel03/react-native-custom-tab-bar/HEAD/android/app/debug.keystore -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaximilianDietel03/react-native-custom-tab-bar/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaximilianDietel03/react-native-custom-tab-bar/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/debug/java/com/awesometsproject/ReactNativeFlipper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaximilianDietel03/react-native-custom-tab-bar/HEAD/android/app/src/debug/java/com/awesometsproject/ReactNativeFlipper.java -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaximilianDietel03/react-native-custom-tab-bar/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/java/com/awesometsproject/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaximilianDietel03/react-native-custom-tab-bar/HEAD/android/app/src/main/java/com/awesometsproject/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/awesometsproject/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaximilianDietel03/react-native-custom-tab-bar/HEAD/android/app/src/main/java/com/awesometsproject/MainApplication.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/awesometsproject/newarchitecture/MainApplicationReactNativeHost.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaximilianDietel03/react-native-custom-tab-bar/HEAD/android/app/src/main/java/com/awesometsproject/newarchitecture/MainApplicationReactNativeHost.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/awesometsproject/newarchitecture/components/MainComponentsRegistry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaximilianDietel03/react-native-custom-tab-bar/HEAD/android/app/src/main/java/com/awesometsproject/newarchitecture/components/MainComponentsRegistry.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/awesometsproject/newarchitecture/modules/MainApplicationTurboModuleManagerDelegate.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaximilianDietel03/react-native-custom-tab-bar/HEAD/android/app/src/main/java/com/awesometsproject/newarchitecture/modules/MainApplicationTurboModuleManagerDelegate.java -------------------------------------------------------------------------------- /android/app/src/main/jni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaximilianDietel03/react-native-custom-tab-bar/HEAD/android/app/src/main/jni/Android.mk -------------------------------------------------------------------------------- /android/app/src/main/jni/MainApplicationModuleProvider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaximilianDietel03/react-native-custom-tab-bar/HEAD/android/app/src/main/jni/MainApplicationModuleProvider.cpp -------------------------------------------------------------------------------- /android/app/src/main/jni/MainApplicationModuleProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaximilianDietel03/react-native-custom-tab-bar/HEAD/android/app/src/main/jni/MainApplicationModuleProvider.h -------------------------------------------------------------------------------- /android/app/src/main/jni/MainApplicationTurboModuleManagerDelegate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaximilianDietel03/react-native-custom-tab-bar/HEAD/android/app/src/main/jni/MainApplicationTurboModuleManagerDelegate.cpp -------------------------------------------------------------------------------- /android/app/src/main/jni/MainApplicationTurboModuleManagerDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaximilianDietel03/react-native-custom-tab-bar/HEAD/android/app/src/main/jni/MainApplicationTurboModuleManagerDelegate.h -------------------------------------------------------------------------------- /android/app/src/main/jni/MainComponentsRegistry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaximilianDietel03/react-native-custom-tab-bar/HEAD/android/app/src/main/jni/MainComponentsRegistry.cpp -------------------------------------------------------------------------------- /android/app/src/main/jni/MainComponentsRegistry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaximilianDietel03/react-native-custom-tab-bar/HEAD/android/app/src/main/jni/MainComponentsRegistry.h -------------------------------------------------------------------------------- /android/app/src/main/jni/OnLoad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaximilianDietel03/react-native-custom-tab-bar/HEAD/android/app/src/main/jni/OnLoad.cpp -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/rn_edit_text_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaximilianDietel03/react-native-custom-tab-bar/HEAD/android/app/src/main/res/drawable/rn_edit_text_material.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaximilianDietel03/react-native-custom-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/MaximilianDietel03/react-native-custom-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/MaximilianDietel03/react-native-custom-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/MaximilianDietel03/react-native-custom-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/MaximilianDietel03/react-native-custom-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/MaximilianDietel03/react-native-custom-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/MaximilianDietel03/react-native-custom-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/MaximilianDietel03/react-native-custom-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/MaximilianDietel03/react-native-custom-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/MaximilianDietel03/react-native-custom-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/MaximilianDietel03/react-native-custom-tab-bar/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaximilianDietel03/react-native-custom-tab-bar/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaximilianDietel03/react-native-custom-tab-bar/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaximilianDietel03/react-native-custom-tab-bar/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaximilianDietel03/react-native-custom-tab-bar/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaximilianDietel03/react-native-custom-tab-bar/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaximilianDietel03/react-native-custom-tab-bar/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaximilianDietel03/react-native-custom-tab-bar/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaximilianDietel03/react-native-custom-tab-bar/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaximilianDietel03/react-native-custom-tab-bar/HEAD/app.json -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaximilianDietel03/react-native-custom-tab-bar/HEAD/babel.config.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaximilianDietel03/react-native-custom-tab-bar/HEAD/index.js -------------------------------------------------------------------------------- /ios/AwesomeTSProject.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaximilianDietel03/react-native-custom-tab-bar/HEAD/ios/AwesomeTSProject.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/AwesomeTSProject.xcodeproj/xcshareddata/xcschemes/AwesomeTSProject.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaximilianDietel03/react-native-custom-tab-bar/HEAD/ios/AwesomeTSProject.xcodeproj/xcshareddata/xcschemes/AwesomeTSProject.xcscheme -------------------------------------------------------------------------------- /ios/AwesomeTSProject.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaximilianDietel03/react-native-custom-tab-bar/HEAD/ios/AwesomeTSProject.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/AwesomeTSProject.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaximilianDietel03/react-native-custom-tab-bar/HEAD/ios/AwesomeTSProject.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ios/AwesomeTSProject/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaximilianDietel03/react-native-custom-tab-bar/HEAD/ios/AwesomeTSProject/AppDelegate.h -------------------------------------------------------------------------------- /ios/AwesomeTSProject/AppDelegate.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaximilianDietel03/react-native-custom-tab-bar/HEAD/ios/AwesomeTSProject/AppDelegate.mm -------------------------------------------------------------------------------- /ios/AwesomeTSProject/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaximilianDietel03/react-native-custom-tab-bar/HEAD/ios/AwesomeTSProject/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/AwesomeTSProject/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaximilianDietel03/react-native-custom-tab-bar/HEAD/ios/AwesomeTSProject/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/AwesomeTSProject/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaximilianDietel03/react-native-custom-tab-bar/HEAD/ios/AwesomeTSProject/Info.plist -------------------------------------------------------------------------------- /ios/AwesomeTSProject/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaximilianDietel03/react-native-custom-tab-bar/HEAD/ios/AwesomeTSProject/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ios/AwesomeTSProject/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaximilianDietel03/react-native-custom-tab-bar/HEAD/ios/AwesomeTSProject/main.m -------------------------------------------------------------------------------- /ios/AwesomeTSProjectTests/AwesomeTSProjectTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaximilianDietel03/react-native-custom-tab-bar/HEAD/ios/AwesomeTSProjectTests/AwesomeTSProjectTests.m -------------------------------------------------------------------------------- /ios/AwesomeTSProjectTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaximilianDietel03/react-native-custom-tab-bar/HEAD/ios/AwesomeTSProjectTests/Info.plist -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaximilianDietel03/react-native-custom-tab-bar/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaximilianDietel03/react-native-custom-tab-bar/HEAD/ios/Podfile.lock -------------------------------------------------------------------------------- /ios/_xcode.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaximilianDietel03/react-native-custom-tab-bar/HEAD/ios/_xcode.env -------------------------------------------------------------------------------- /metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaximilianDietel03/react-native-custom-tab-bar/HEAD/metro.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaximilianDietel03/react-native-custom-tab-bar/HEAD/package.json -------------------------------------------------------------------------------- /src/assets/lottie/chat.icon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaximilianDietel03/react-native-custom-tab-bar/HEAD/src/assets/lottie/chat.icon.json -------------------------------------------------------------------------------- /src/assets/lottie/home.icon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaximilianDietel03/react-native-custom-tab-bar/HEAD/src/assets/lottie/home.icon.json -------------------------------------------------------------------------------- /src/assets/lottie/settings.icon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaximilianDietel03/react-native-custom-tab-bar/HEAD/src/assets/lottie/settings.icon.json -------------------------------------------------------------------------------- /src/assets/lottie/upload.icon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaximilianDietel03/react-native-custom-tab-bar/HEAD/src/assets/lottie/upload.icon.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaximilianDietel03/react-native-custom-tab-bar/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaximilianDietel03/react-native-custom-tab-bar/HEAD/yarn.lock --------------------------------------------------------------------------------