├── .gitignore ├── App.tsx ├── app.d.ts ├── app.json ├── assets ├── PercentSelector.svg ├── ProgressTag.svg ├── Slider.svg ├── Subtract.png ├── Warning.svg ├── adaptive-icon.png ├── barGraph.json ├── cycle2.json ├── cycleAnimation.json ├── favicon.png ├── gif1.gif ├── house.jpg ├── icon.png ├── image1.jpg ├── image2.jpg ├── image3.jpg ├── image4.jpg ├── map.png ├── meditation.svg ├── mello.png ├── mello.svg ├── model3d.jpg ├── profile.jpg ├── profile │ ├── profile1.jpg │ ├── profile2.jpg │ ├── profile3.jpg │ └── profile4.jpg ├── scene.jpg ├── sea-side.jpg ├── splash.png ├── undraw_happy_music_g6wc.svg ├── white.jpg └── yoga.json ├── babel.config.js ├── components ├── AnimatedLightSlider.tsx ├── Mello.tsx ├── PercentSlider.tsx └── ProgressTag.tsx ├── package.json ├── src ├── AnalyticsApp.tsx ├── BicycleSystem.tsx ├── BlurDashboard.tsx ├── ExpandingView.tsx ├── GlobalTimeSelector.tsx ├── LightControl.tsx ├── Loading.tsx ├── MusicAppDesign.tsx ├── PercentageSelector.tsx ├── RotatingChair.tsx ├── Scenary.tsx ├── SlideToSend.tsx └── data.ts ├── tailwind.config.js ├── temp ├── tsconfig.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidghimire/react-native-animations/HEAD/.gitignore -------------------------------------------------------------------------------- /App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidghimire/react-native-animations/HEAD/App.tsx -------------------------------------------------------------------------------- /app.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidghimire/react-native-animations/HEAD/app.d.ts -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidghimire/react-native-animations/HEAD/app.json -------------------------------------------------------------------------------- /assets/PercentSelector.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidghimire/react-native-animations/HEAD/assets/PercentSelector.svg -------------------------------------------------------------------------------- /assets/ProgressTag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidghimire/react-native-animations/HEAD/assets/ProgressTag.svg -------------------------------------------------------------------------------- /assets/Slider.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidghimire/react-native-animations/HEAD/assets/Slider.svg -------------------------------------------------------------------------------- /assets/Subtract.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidghimire/react-native-animations/HEAD/assets/Subtract.png -------------------------------------------------------------------------------- /assets/Warning.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidghimire/react-native-animations/HEAD/assets/Warning.svg -------------------------------------------------------------------------------- /assets/adaptive-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidghimire/react-native-animations/HEAD/assets/adaptive-icon.png -------------------------------------------------------------------------------- /assets/barGraph.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidghimire/react-native-animations/HEAD/assets/barGraph.json -------------------------------------------------------------------------------- /assets/cycle2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidghimire/react-native-animations/HEAD/assets/cycle2.json -------------------------------------------------------------------------------- /assets/cycleAnimation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidghimire/react-native-animations/HEAD/assets/cycleAnimation.json -------------------------------------------------------------------------------- /assets/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidghimire/react-native-animations/HEAD/assets/favicon.png -------------------------------------------------------------------------------- /assets/gif1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidghimire/react-native-animations/HEAD/assets/gif1.gif -------------------------------------------------------------------------------- /assets/house.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidghimire/react-native-animations/HEAD/assets/house.jpg -------------------------------------------------------------------------------- /assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidghimire/react-native-animations/HEAD/assets/icon.png -------------------------------------------------------------------------------- /assets/image1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidghimire/react-native-animations/HEAD/assets/image1.jpg -------------------------------------------------------------------------------- /assets/image2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidghimire/react-native-animations/HEAD/assets/image2.jpg -------------------------------------------------------------------------------- /assets/image3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidghimire/react-native-animations/HEAD/assets/image3.jpg -------------------------------------------------------------------------------- /assets/image4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidghimire/react-native-animations/HEAD/assets/image4.jpg -------------------------------------------------------------------------------- /assets/map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidghimire/react-native-animations/HEAD/assets/map.png -------------------------------------------------------------------------------- /assets/meditation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidghimire/react-native-animations/HEAD/assets/meditation.svg -------------------------------------------------------------------------------- /assets/mello.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidghimire/react-native-animations/HEAD/assets/mello.png -------------------------------------------------------------------------------- /assets/mello.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidghimire/react-native-animations/HEAD/assets/mello.svg -------------------------------------------------------------------------------- /assets/model3d.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidghimire/react-native-animations/HEAD/assets/model3d.jpg -------------------------------------------------------------------------------- /assets/profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidghimire/react-native-animations/HEAD/assets/profile.jpg -------------------------------------------------------------------------------- /assets/profile/profile1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidghimire/react-native-animations/HEAD/assets/profile/profile1.jpg -------------------------------------------------------------------------------- /assets/profile/profile2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidghimire/react-native-animations/HEAD/assets/profile/profile2.jpg -------------------------------------------------------------------------------- /assets/profile/profile3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidghimire/react-native-animations/HEAD/assets/profile/profile3.jpg -------------------------------------------------------------------------------- /assets/profile/profile4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidghimire/react-native-animations/HEAD/assets/profile/profile4.jpg -------------------------------------------------------------------------------- /assets/scene.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidghimire/react-native-animations/HEAD/assets/scene.jpg -------------------------------------------------------------------------------- /assets/sea-side.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidghimire/react-native-animations/HEAD/assets/sea-side.jpg -------------------------------------------------------------------------------- /assets/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidghimire/react-native-animations/HEAD/assets/splash.png -------------------------------------------------------------------------------- /assets/undraw_happy_music_g6wc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidghimire/react-native-animations/HEAD/assets/undraw_happy_music_g6wc.svg -------------------------------------------------------------------------------- /assets/white.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidghimire/react-native-animations/HEAD/assets/white.jpg -------------------------------------------------------------------------------- /assets/yoga.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidghimire/react-native-animations/HEAD/assets/yoga.json -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidghimire/react-native-animations/HEAD/babel.config.js -------------------------------------------------------------------------------- /components/AnimatedLightSlider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidghimire/react-native-animations/HEAD/components/AnimatedLightSlider.tsx -------------------------------------------------------------------------------- /components/Mello.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidghimire/react-native-animations/HEAD/components/Mello.tsx -------------------------------------------------------------------------------- /components/PercentSlider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidghimire/react-native-animations/HEAD/components/PercentSlider.tsx -------------------------------------------------------------------------------- /components/ProgressTag.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidghimire/react-native-animations/HEAD/components/ProgressTag.tsx -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidghimire/react-native-animations/HEAD/package.json -------------------------------------------------------------------------------- /src/AnalyticsApp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidghimire/react-native-animations/HEAD/src/AnalyticsApp.tsx -------------------------------------------------------------------------------- /src/BicycleSystem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidghimire/react-native-animations/HEAD/src/BicycleSystem.tsx -------------------------------------------------------------------------------- /src/BlurDashboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidghimire/react-native-animations/HEAD/src/BlurDashboard.tsx -------------------------------------------------------------------------------- /src/ExpandingView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidghimire/react-native-animations/HEAD/src/ExpandingView.tsx -------------------------------------------------------------------------------- /src/GlobalTimeSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidghimire/react-native-animations/HEAD/src/GlobalTimeSelector.tsx -------------------------------------------------------------------------------- /src/LightControl.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidghimire/react-native-animations/HEAD/src/LightControl.tsx -------------------------------------------------------------------------------- /src/Loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidghimire/react-native-animations/HEAD/src/Loading.tsx -------------------------------------------------------------------------------- /src/MusicAppDesign.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidghimire/react-native-animations/HEAD/src/MusicAppDesign.tsx -------------------------------------------------------------------------------- /src/PercentageSelector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidghimire/react-native-animations/HEAD/src/PercentageSelector.tsx -------------------------------------------------------------------------------- /src/RotatingChair.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidghimire/react-native-animations/HEAD/src/RotatingChair.tsx -------------------------------------------------------------------------------- /src/Scenary.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidghimire/react-native-animations/HEAD/src/Scenary.tsx -------------------------------------------------------------------------------- /src/SlideToSend.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidghimire/react-native-animations/HEAD/src/SlideToSend.tsx -------------------------------------------------------------------------------- /src/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidghimire/react-native-animations/HEAD/src/data.ts -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidghimire/react-native-animations/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /temp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidghimire/react-native-animations/HEAD/temp -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidghimire/react-native-animations/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sidghimire/react-native-animations/HEAD/yarn.lock --------------------------------------------------------------------------------