├── .buckconfig ├── .eslintrc.js ├── .flowconfig ├── .gitattributes ├── .github └── FUNDING.yml ├── .gitignore ├── .prettierrc.js ├── .watchmanconfig ├── App.js ├── LICENSE ├── README.md ├── __tests__ └── App-test.js ├── android ├── app │ ├── BUCK │ ├── build.gradle │ ├── build_defs.bzl │ ├── debug.keystore │ ├── proguard-rules.pro │ └── src │ │ ├── debug │ │ ├── AndroidManifest.xml │ │ └── java │ │ │ └── com │ │ │ └── headeranimation │ │ │ └── ReactNativeFlipper.java │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── assets │ │ └── fonts │ │ │ ├── AntDesign.ttf │ │ │ ├── Entypo.ttf │ │ │ ├── EvilIcons.ttf │ │ │ ├── Feather.ttf │ │ │ ├── FontAwesome.ttf │ │ │ ├── FontAwesome5_Brands.ttf │ │ │ ├── FontAwesome5_Regular.ttf │ │ │ ├── FontAwesome5_Solid.ttf │ │ │ ├── Fontisto.ttf │ │ │ ├── Foundation.ttf │ │ │ ├── Ionicons.ttf │ │ │ ├── MaterialCommunityIcons.ttf │ │ │ ├── MaterialIcons.ttf │ │ │ ├── Octicons.ttf │ │ │ ├── SimpleLineIcons.ttf │ │ │ └── Zocial.ttf │ │ ├── java │ │ └── com │ │ │ └── headeranimation │ │ │ ├── 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 ├── keystores │ ├── BUCK │ └── debug.keystore.properties └── settings.gradle ├── app.json ├── babel.config.js ├── index.js ├── ios ├── HeaderAnimation-tvOS │ └── Info.plist ├── HeaderAnimation-tvOSTests │ └── Info.plist ├── HeaderAnimation.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── HeaderAnimation-tvOS.xcscheme │ │ └── HeaderAnimation.xcscheme ├── HeaderAnimation │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Info.plist │ ├── LaunchScreen.storyboard │ └── main.m ├── HeaderAnimationTests │ ├── HeaderAnimationTests.m │ └── Info.plist └── Podfile ├── metro.config.js ├── package.json ├── screenshot └── screenshot.gif └── src ├── assets ├── data │ └── SongData.json └── images │ ├── bob-marley-cover.jpg │ └── bob-marley-profile.jpg ├── component ├── MaterialAnimatedView │ └── index.js └── MaterialAnimation │ └── index.js ├── package.json ├── screens └── ArtistScreen │ ├── index.js │ └── style.js └── utils ├── Colors.js ├── ThemeUtils.js └── index.js /.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rutvikbhatt9/react-native-header-animation/HEAD/.buckconfig -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | extends: '@react-native-community', 4 | }; 5 | -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rutvikbhatt9/react-native-header-animation/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rutvikbhatt9/react-native-header-animation/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rutvikbhatt9/react-native-header-animation/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rutvikbhatt9/react-native-header-animation/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rutvikbhatt9/react-native-header-animation/HEAD/App.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rutvikbhatt9/react-native-header-animation/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rutvikbhatt9/react-native-header-animation/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/App-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rutvikbhatt9/react-native-header-animation/HEAD/__tests__/App-test.js -------------------------------------------------------------------------------- /android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rutvikbhatt9/react-native-header-animation/HEAD/android/app/BUCK -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rutvikbhatt9/react-native-header-animation/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rutvikbhatt9/react-native-header-animation/HEAD/android/app/build_defs.bzl -------------------------------------------------------------------------------- /android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rutvikbhatt9/react-native-header-animation/HEAD/android/app/debug.keystore -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rutvikbhatt9/react-native-header-animation/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rutvikbhatt9/react-native-header-animation/HEAD/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/debug/java/com/headeranimation/ReactNativeFlipper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rutvikbhatt9/react-native-header-animation/HEAD/android/app/src/debug/java/com/headeranimation/ReactNativeFlipper.java -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rutvikbhatt9/react-native-header-animation/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/AntDesign.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rutvikbhatt9/react-native-header-animation/HEAD/android/app/src/main/assets/fonts/AntDesign.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Entypo.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rutvikbhatt9/react-native-header-animation/HEAD/android/app/src/main/assets/fonts/Entypo.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/EvilIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rutvikbhatt9/react-native-header-animation/HEAD/android/app/src/main/assets/fonts/EvilIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Feather.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rutvikbhatt9/react-native-header-animation/HEAD/android/app/src/main/assets/fonts/Feather.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rutvikbhatt9/react-native-header-animation/HEAD/android/app/src/main/assets/fonts/FontAwesome.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome5_Brands.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rutvikbhatt9/react-native-header-animation/HEAD/android/app/src/main/assets/fonts/FontAwesome5_Brands.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome5_Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rutvikbhatt9/react-native-header-animation/HEAD/android/app/src/main/assets/fonts/FontAwesome5_Regular.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/FontAwesome5_Solid.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rutvikbhatt9/react-native-header-animation/HEAD/android/app/src/main/assets/fonts/FontAwesome5_Solid.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Fontisto.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rutvikbhatt9/react-native-header-animation/HEAD/android/app/src/main/assets/fonts/Fontisto.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Foundation.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rutvikbhatt9/react-native-header-animation/HEAD/android/app/src/main/assets/fonts/Foundation.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rutvikbhatt9/react-native-header-animation/HEAD/android/app/src/main/assets/fonts/Ionicons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rutvikbhatt9/react-native-header-animation/HEAD/android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/MaterialIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rutvikbhatt9/react-native-header-animation/HEAD/android/app/src/main/assets/fonts/MaterialIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Octicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rutvikbhatt9/react-native-header-animation/HEAD/android/app/src/main/assets/fonts/Octicons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/SimpleLineIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rutvikbhatt9/react-native-header-animation/HEAD/android/app/src/main/assets/fonts/SimpleLineIcons.ttf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Zocial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rutvikbhatt9/react-native-header-animation/HEAD/android/app/src/main/assets/fonts/Zocial.ttf -------------------------------------------------------------------------------- /android/app/src/main/java/com/headeranimation/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rutvikbhatt9/react-native-header-animation/HEAD/android/app/src/main/java/com/headeranimation/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/headeranimation/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rutvikbhatt9/react-native-header-animation/HEAD/android/app/src/main/java/com/headeranimation/MainApplication.java -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rutvikbhatt9/react-native-header-animation/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/rutvikbhatt9/react-native-header-animation/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/rutvikbhatt9/react-native-header-animation/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/rutvikbhatt9/react-native-header-animation/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/rutvikbhatt9/react-native-header-animation/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/rutvikbhatt9/react-native-header-animation/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/rutvikbhatt9/react-native-header-animation/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/rutvikbhatt9/react-native-header-animation/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/rutvikbhatt9/react-native-header-animation/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/rutvikbhatt9/react-native-header-animation/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rutvikbhatt9/react-native-header-animation/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rutvikbhatt9/react-native-header-animation/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rutvikbhatt9/react-native-header-animation/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rutvikbhatt9/react-native-header-animation/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rutvikbhatt9/react-native-header-animation/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rutvikbhatt9/react-native-header-animation/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rutvikbhatt9/react-native-header-animation/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rutvikbhatt9/react-native-header-animation/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/keystores/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rutvikbhatt9/react-native-header-animation/HEAD/android/keystores/BUCK -------------------------------------------------------------------------------- /android/keystores/debug.keystore.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rutvikbhatt9/react-native-header-animation/HEAD/android/keystores/debug.keystore.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rutvikbhatt9/react-native-header-animation/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rutvikbhatt9/react-native-header-animation/HEAD/app.json -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rutvikbhatt9/react-native-header-animation/HEAD/babel.config.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rutvikbhatt9/react-native-header-animation/HEAD/index.js -------------------------------------------------------------------------------- /ios/HeaderAnimation-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rutvikbhatt9/react-native-header-animation/HEAD/ios/HeaderAnimation-tvOS/Info.plist -------------------------------------------------------------------------------- /ios/HeaderAnimation-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rutvikbhatt9/react-native-header-animation/HEAD/ios/HeaderAnimation-tvOSTests/Info.plist -------------------------------------------------------------------------------- /ios/HeaderAnimation.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rutvikbhatt9/react-native-header-animation/HEAD/ios/HeaderAnimation.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/HeaderAnimation.xcodeproj/xcshareddata/xcschemes/HeaderAnimation-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rutvikbhatt9/react-native-header-animation/HEAD/ios/HeaderAnimation.xcodeproj/xcshareddata/xcschemes/HeaderAnimation-tvOS.xcscheme -------------------------------------------------------------------------------- /ios/HeaderAnimation.xcodeproj/xcshareddata/xcschemes/HeaderAnimation.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rutvikbhatt9/react-native-header-animation/HEAD/ios/HeaderAnimation.xcodeproj/xcshareddata/xcschemes/HeaderAnimation.xcscheme -------------------------------------------------------------------------------- /ios/HeaderAnimation/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rutvikbhatt9/react-native-header-animation/HEAD/ios/HeaderAnimation/AppDelegate.h -------------------------------------------------------------------------------- /ios/HeaderAnimation/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rutvikbhatt9/react-native-header-animation/HEAD/ios/HeaderAnimation/AppDelegate.m -------------------------------------------------------------------------------- /ios/HeaderAnimation/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rutvikbhatt9/react-native-header-animation/HEAD/ios/HeaderAnimation/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /ios/HeaderAnimation/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rutvikbhatt9/react-native-header-animation/HEAD/ios/HeaderAnimation/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/HeaderAnimation/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rutvikbhatt9/react-native-header-animation/HEAD/ios/HeaderAnimation/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/HeaderAnimation/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rutvikbhatt9/react-native-header-animation/HEAD/ios/HeaderAnimation/Info.plist -------------------------------------------------------------------------------- /ios/HeaderAnimation/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rutvikbhatt9/react-native-header-animation/HEAD/ios/HeaderAnimation/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ios/HeaderAnimation/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rutvikbhatt9/react-native-header-animation/HEAD/ios/HeaderAnimation/main.m -------------------------------------------------------------------------------- /ios/HeaderAnimationTests/HeaderAnimationTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rutvikbhatt9/react-native-header-animation/HEAD/ios/HeaderAnimationTests/HeaderAnimationTests.m -------------------------------------------------------------------------------- /ios/HeaderAnimationTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rutvikbhatt9/react-native-header-animation/HEAD/ios/HeaderAnimationTests/Info.plist -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rutvikbhatt9/react-native-header-animation/HEAD/ios/Podfile -------------------------------------------------------------------------------- /metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rutvikbhatt9/react-native-header-animation/HEAD/metro.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rutvikbhatt9/react-native-header-animation/HEAD/package.json -------------------------------------------------------------------------------- /screenshot/screenshot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rutvikbhatt9/react-native-header-animation/HEAD/screenshot/screenshot.gif -------------------------------------------------------------------------------- /src/assets/data/SongData.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rutvikbhatt9/react-native-header-animation/HEAD/src/assets/data/SongData.json -------------------------------------------------------------------------------- /src/assets/images/bob-marley-cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rutvikbhatt9/react-native-header-animation/HEAD/src/assets/images/bob-marley-cover.jpg -------------------------------------------------------------------------------- /src/assets/images/bob-marley-profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rutvikbhatt9/react-native-header-animation/HEAD/src/assets/images/bob-marley-profile.jpg -------------------------------------------------------------------------------- /src/component/MaterialAnimatedView/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rutvikbhatt9/react-native-header-animation/HEAD/src/component/MaterialAnimatedView/index.js -------------------------------------------------------------------------------- /src/component/MaterialAnimation/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rutvikbhatt9/react-native-header-animation/HEAD/src/component/MaterialAnimation/index.js -------------------------------------------------------------------------------- /src/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "src" 3 | } 4 | -------------------------------------------------------------------------------- /src/screens/ArtistScreen/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rutvikbhatt9/react-native-header-animation/HEAD/src/screens/ArtistScreen/index.js -------------------------------------------------------------------------------- /src/screens/ArtistScreen/style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rutvikbhatt9/react-native-header-animation/HEAD/src/screens/ArtistScreen/style.js -------------------------------------------------------------------------------- /src/utils/Colors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rutvikbhatt9/react-native-header-animation/HEAD/src/utils/Colors.js -------------------------------------------------------------------------------- /src/utils/ThemeUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rutvikbhatt9/react-native-header-animation/HEAD/src/utils/ThemeUtils.js -------------------------------------------------------------------------------- /src/utils/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rutvikbhatt9/react-native-header-animation/HEAD/src/utils/index.js --------------------------------------------------------------------------------