├── .buckconfig ├── .gitattributes ├── .gitignore ├── .vscode └── launch.json ├── App.tsx ├── README.md ├── __tests__ └── App.js ├── android ├── app │ ├── BUCK │ ├── build.gradle │ ├── build_defs.bzl │ ├── proguard-rules.pro │ └── src │ │ ├── debug │ │ └── AndroidManifest.xml │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── animatedbottomtabreactnativeexample │ │ │ ├── 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 ├── animatedBottomTabReactNativeExample.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ └── animatedBottomTabReactNativeExample.xcscheme ├── animatedBottomTabReactNativeExample.xcworkspace │ └── contents.xcworkspacedata └── animatedBottomTabReactNativeExample │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ └── LaunchScreen.xib │ ├── Images.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Info.plist │ ├── Supporting │ └── Expo.plist │ └── main.m ├── package.json ├── src ├── components │ └── BottomMenu │ │ ├── BottomMenu.tsx │ │ ├── BottomMenuItem.tsx │ │ └── TabBar.tsx ├── screens │ ├── AppsScreen.tsx │ ├── DashboardScreen.tsx │ ├── GroupScreen.tsx │ └── ProfileScreen.tsx └── styles │ └── index.ts ├── tsconfig.json └── yarn.lock /.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baptisteArno/animated-bottom-tab-react-native-example/HEAD/.buckconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baptisteArno/animated-bottom-tab-react-native-example/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baptisteArno/animated-bottom-tab-react-native-example/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baptisteArno/animated-bottom-tab-react-native-example/HEAD/App.tsx -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baptisteArno/animated-bottom-tab-react-native-example/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baptisteArno/animated-bottom-tab-react-native-example/HEAD/__tests__/App.js -------------------------------------------------------------------------------- /android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baptisteArno/animated-bottom-tab-react-native-example/HEAD/android/app/BUCK -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baptisteArno/animated-bottom-tab-react-native-example/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baptisteArno/animated-bottom-tab-react-native-example/HEAD/android/app/build_defs.bzl -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baptisteArno/animated-bottom-tab-react-native-example/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baptisteArno/animated-bottom-tab-react-native-example/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baptisteArno/animated-bottom-tab-react-native-example/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/java/com/animatedbottomtabreactnativeexample/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baptisteArno/animated-bottom-tab-react-native-example/HEAD/android/app/src/main/java/com/animatedbottomtabreactnativeexample/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/animatedbottomtabreactnativeexample/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baptisteArno/animated-bottom-tab-react-native-example/HEAD/android/app/src/main/java/com/animatedbottomtabreactnativeexample/MainApplication.java -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baptisteArno/animated-bottom-tab-react-native-example/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/baptisteArno/animated-bottom-tab-react-native-example/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/baptisteArno/animated-bottom-tab-react-native-example/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/baptisteArno/animated-bottom-tab-react-native-example/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/baptisteArno/animated-bottom-tab-react-native-example/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/baptisteArno/animated-bottom-tab-react-native-example/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/baptisteArno/animated-bottom-tab-react-native-example/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/baptisteArno/animated-bottom-tab-react-native-example/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/baptisteArno/animated-bottom-tab-react-native-example/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/baptisteArno/animated-bottom-tab-react-native-example/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baptisteArno/animated-bottom-tab-react-native-example/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baptisteArno/animated-bottom-tab-react-native-example/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baptisteArno/animated-bottom-tab-react-native-example/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baptisteArno/animated-bottom-tab-react-native-example/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baptisteArno/animated-bottom-tab-react-native-example/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baptisteArno/animated-bottom-tab-react-native-example/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baptisteArno/animated-bottom-tab-react-native-example/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baptisteArno/animated-bottom-tab-react-native-example/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baptisteArno/animated-bottom-tab-react-native-example/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baptisteArno/animated-bottom-tab-react-native-example/HEAD/app.json -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baptisteArno/animated-bottom-tab-react-native-example/HEAD/babel.config.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baptisteArno/animated-bottom-tab-react-native-example/HEAD/index.js -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baptisteArno/animated-bottom-tab-react-native-example/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baptisteArno/animated-bottom-tab-react-native-example/HEAD/ios/Podfile.lock -------------------------------------------------------------------------------- /ios/animatedBottomTabReactNativeExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baptisteArno/animated-bottom-tab-react-native-example/HEAD/ios/animatedBottomTabReactNativeExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/animatedBottomTabReactNativeExample.xcodeproj/xcshareddata/xcschemes/animatedBottomTabReactNativeExample.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baptisteArno/animated-bottom-tab-react-native-example/HEAD/ios/animatedBottomTabReactNativeExample.xcodeproj/xcshareddata/xcschemes/animatedBottomTabReactNativeExample.xcscheme -------------------------------------------------------------------------------- /ios/animatedBottomTabReactNativeExample.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baptisteArno/animated-bottom-tab-react-native-example/HEAD/ios/animatedBottomTabReactNativeExample.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/animatedBottomTabReactNativeExample/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baptisteArno/animated-bottom-tab-react-native-example/HEAD/ios/animatedBottomTabReactNativeExample/AppDelegate.h -------------------------------------------------------------------------------- /ios/animatedBottomTabReactNativeExample/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baptisteArno/animated-bottom-tab-react-native-example/HEAD/ios/animatedBottomTabReactNativeExample/AppDelegate.m -------------------------------------------------------------------------------- /ios/animatedBottomTabReactNativeExample/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baptisteArno/animated-bottom-tab-react-native-example/HEAD/ios/animatedBottomTabReactNativeExample/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /ios/animatedBottomTabReactNativeExample/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baptisteArno/animated-bottom-tab-react-native-example/HEAD/ios/animatedBottomTabReactNativeExample/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/animatedBottomTabReactNativeExample/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baptisteArno/animated-bottom-tab-react-native-example/HEAD/ios/animatedBottomTabReactNativeExample/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/animatedBottomTabReactNativeExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baptisteArno/animated-bottom-tab-react-native-example/HEAD/ios/animatedBottomTabReactNativeExample/Info.plist -------------------------------------------------------------------------------- /ios/animatedBottomTabReactNativeExample/Supporting/Expo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baptisteArno/animated-bottom-tab-react-native-example/HEAD/ios/animatedBottomTabReactNativeExample/Supporting/Expo.plist -------------------------------------------------------------------------------- /ios/animatedBottomTabReactNativeExample/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baptisteArno/animated-bottom-tab-react-native-example/HEAD/ios/animatedBottomTabReactNativeExample/main.m -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baptisteArno/animated-bottom-tab-react-native-example/HEAD/package.json -------------------------------------------------------------------------------- /src/components/BottomMenu/BottomMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baptisteArno/animated-bottom-tab-react-native-example/HEAD/src/components/BottomMenu/BottomMenu.tsx -------------------------------------------------------------------------------- /src/components/BottomMenu/BottomMenuItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baptisteArno/animated-bottom-tab-react-native-example/HEAD/src/components/BottomMenu/BottomMenuItem.tsx -------------------------------------------------------------------------------- /src/components/BottomMenu/TabBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baptisteArno/animated-bottom-tab-react-native-example/HEAD/src/components/BottomMenu/TabBar.tsx -------------------------------------------------------------------------------- /src/screens/AppsScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baptisteArno/animated-bottom-tab-react-native-example/HEAD/src/screens/AppsScreen.tsx -------------------------------------------------------------------------------- /src/screens/DashboardScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baptisteArno/animated-bottom-tab-react-native-example/HEAD/src/screens/DashboardScreen.tsx -------------------------------------------------------------------------------- /src/screens/GroupScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baptisteArno/animated-bottom-tab-react-native-example/HEAD/src/screens/GroupScreen.tsx -------------------------------------------------------------------------------- /src/screens/ProfileScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baptisteArno/animated-bottom-tab-react-native-example/HEAD/src/screens/ProfileScreen.tsx -------------------------------------------------------------------------------- /src/styles/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baptisteArno/animated-bottom-tab-react-native-example/HEAD/src/styles/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baptisteArno/animated-bottom-tab-react-native-example/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/baptisteArno/animated-bottom-tab-react-native-example/HEAD/yarn.lock --------------------------------------------------------------------------------