├── .expo-shared └── assets.json ├── .gitignore ├── .prettierrc ├── App.js ├── app.json ├── assets ├── adaptive-icon.png ├── favicon.png ├── icon.png ├── icons │ ├── Chat.png │ ├── artist.png │ ├── logo.png │ ├── navigation.png │ ├── next.png │ ├── pause.png │ ├── prev.png │ ├── settings.png │ ├── voice.png │ └── x.png └── splash.png ├── babel.config.js ├── package.json ├── src ├── components │ ├── common │ │ ├── Icon.js │ │ └── index.js │ └── rubberSlider │ │ ├── AnimatedText.js │ │ ├── Header.js │ │ └── index.js ├── consts │ ├── images.js │ └── index.js ├── screens │ ├── AnimTabBarButton.js │ ├── MicroInteraction.js │ ├── RubberSlider.js │ ├── TabBarInteraction.js │ ├── Upload.js │ └── index.js └── styles │ ├── DSS.js │ ├── index.js │ └── styles.js └── yarn.lock /.expo-shared/assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/4TWIGGERS_ANIMATIONS/HEAD/.expo-shared/assets.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/4TWIGGERS_ANIMATIONS/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/4TWIGGERS_ANIMATIONS/HEAD/.prettierrc -------------------------------------------------------------------------------- /App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/4TWIGGERS_ANIMATIONS/HEAD/App.js -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/4TWIGGERS_ANIMATIONS/HEAD/app.json -------------------------------------------------------------------------------- /assets/adaptive-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/4TWIGGERS_ANIMATIONS/HEAD/assets/adaptive-icon.png -------------------------------------------------------------------------------- /assets/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/4TWIGGERS_ANIMATIONS/HEAD/assets/favicon.png -------------------------------------------------------------------------------- /assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/4TWIGGERS_ANIMATIONS/HEAD/assets/icon.png -------------------------------------------------------------------------------- /assets/icons/Chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/4TWIGGERS_ANIMATIONS/HEAD/assets/icons/Chat.png -------------------------------------------------------------------------------- /assets/icons/artist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/4TWIGGERS_ANIMATIONS/HEAD/assets/icons/artist.png -------------------------------------------------------------------------------- /assets/icons/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/4TWIGGERS_ANIMATIONS/HEAD/assets/icons/logo.png -------------------------------------------------------------------------------- /assets/icons/navigation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/4TWIGGERS_ANIMATIONS/HEAD/assets/icons/navigation.png -------------------------------------------------------------------------------- /assets/icons/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/4TWIGGERS_ANIMATIONS/HEAD/assets/icons/next.png -------------------------------------------------------------------------------- /assets/icons/pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/4TWIGGERS_ANIMATIONS/HEAD/assets/icons/pause.png -------------------------------------------------------------------------------- /assets/icons/prev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/4TWIGGERS_ANIMATIONS/HEAD/assets/icons/prev.png -------------------------------------------------------------------------------- /assets/icons/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/4TWIGGERS_ANIMATIONS/HEAD/assets/icons/settings.png -------------------------------------------------------------------------------- /assets/icons/voice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/4TWIGGERS_ANIMATIONS/HEAD/assets/icons/voice.png -------------------------------------------------------------------------------- /assets/icons/x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/4TWIGGERS_ANIMATIONS/HEAD/assets/icons/x.png -------------------------------------------------------------------------------- /assets/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/4TWIGGERS_ANIMATIONS/HEAD/assets/splash.png -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/4TWIGGERS_ANIMATIONS/HEAD/babel.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/4TWIGGERS_ANIMATIONS/HEAD/package.json -------------------------------------------------------------------------------- /src/components/common/Icon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/4TWIGGERS_ANIMATIONS/HEAD/src/components/common/Icon.js -------------------------------------------------------------------------------- /src/components/common/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/4TWIGGERS_ANIMATIONS/HEAD/src/components/common/index.js -------------------------------------------------------------------------------- /src/components/rubberSlider/AnimatedText.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/4TWIGGERS_ANIMATIONS/HEAD/src/components/rubberSlider/AnimatedText.js -------------------------------------------------------------------------------- /src/components/rubberSlider/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/4TWIGGERS_ANIMATIONS/HEAD/src/components/rubberSlider/Header.js -------------------------------------------------------------------------------- /src/components/rubberSlider/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/4TWIGGERS_ANIMATIONS/HEAD/src/components/rubberSlider/index.js -------------------------------------------------------------------------------- /src/consts/images.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/4TWIGGERS_ANIMATIONS/HEAD/src/consts/images.js -------------------------------------------------------------------------------- /src/consts/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/4TWIGGERS_ANIMATIONS/HEAD/src/consts/index.js -------------------------------------------------------------------------------- /src/screens/AnimTabBarButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/4TWIGGERS_ANIMATIONS/HEAD/src/screens/AnimTabBarButton.js -------------------------------------------------------------------------------- /src/screens/MicroInteraction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/4TWIGGERS_ANIMATIONS/HEAD/src/screens/MicroInteraction.js -------------------------------------------------------------------------------- /src/screens/RubberSlider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/4TWIGGERS_ANIMATIONS/HEAD/src/screens/RubberSlider.js -------------------------------------------------------------------------------- /src/screens/TabBarInteraction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/4TWIGGERS_ANIMATIONS/HEAD/src/screens/TabBarInteraction.js -------------------------------------------------------------------------------- /src/screens/Upload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/4TWIGGERS_ANIMATIONS/HEAD/src/screens/Upload.js -------------------------------------------------------------------------------- /src/screens/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/4TWIGGERS_ANIMATIONS/HEAD/src/screens/index.js -------------------------------------------------------------------------------- /src/styles/DSS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/4TWIGGERS_ANIMATIONS/HEAD/src/styles/DSS.js -------------------------------------------------------------------------------- /src/styles/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/4TWIGGERS_ANIMATIONS/HEAD/src/styles/index.js -------------------------------------------------------------------------------- /src/styles/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/4TWIGGERS_ANIMATIONS/HEAD/src/styles/styles.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4TWIGGERS/4TWIGGERS_ANIMATIONS/HEAD/yarn.lock --------------------------------------------------------------------------------