├── .expo-shared └── assets.json ├── .gitignore ├── App.js ├── README.md ├── app.json ├── assets ├── adaptive-icon.png ├── favicon.png ├── icon.png └── splash.png ├── babel.config.js ├── package.json ├── src ├── Navigation.js ├── TabBar.js └── consts │ ├── index.js │ ├── path.js │ └── screens.js └── yarn.lock /.expo-shared/assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/Tabbar-Animation/HEAD/.expo-shared/assets.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/Tabbar-Animation/HEAD/.gitignore -------------------------------------------------------------------------------- /App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/Tabbar-Animation/HEAD/App.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/Tabbar-Animation/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/Tabbar-Animation/HEAD/app.json -------------------------------------------------------------------------------- /assets/adaptive-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/Tabbar-Animation/HEAD/assets/adaptive-icon.png -------------------------------------------------------------------------------- /assets/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/Tabbar-Animation/HEAD/assets/favicon.png -------------------------------------------------------------------------------- /assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/Tabbar-Animation/HEAD/assets/icon.png -------------------------------------------------------------------------------- /assets/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/Tabbar-Animation/HEAD/assets/splash.png -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/Tabbar-Animation/HEAD/babel.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/Tabbar-Animation/HEAD/package.json -------------------------------------------------------------------------------- /src/Navigation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/Tabbar-Animation/HEAD/src/Navigation.js -------------------------------------------------------------------------------- /src/TabBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/Tabbar-Animation/HEAD/src/TabBar.js -------------------------------------------------------------------------------- /src/consts/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/Tabbar-Animation/HEAD/src/consts/index.js -------------------------------------------------------------------------------- /src/consts/path.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/Tabbar-Animation/HEAD/src/consts/path.js -------------------------------------------------------------------------------- /src/consts/screens.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/Tabbar-Animation/HEAD/src/consts/screens.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/Tabbar-Animation/HEAD/yarn.lock --------------------------------------------------------------------------------