├── .gitignore ├── .npmignore ├── Example ├── Example.js ├── backgroundImage.png └── donaldduck.png ├── ImageHeader.js ├── README.md ├── android ├── app │ ├── BUCK │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── reactnativeheader │ │ │ ├── MainActivity.java │ │ │ └── MainApplication.java │ │ └── res │ │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ └── ic_launcher.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 ├── index.android.js ├── index.ios.js ├── ios ├── ReactNativeHeader.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ └── ReactNativeHeader.xcscheme ├── ReactNativeHeader │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ └── LaunchScreen.xib │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ └── main.m └── ReactNativeHeaderTests │ ├── Info.plist │ └── ReactNativeHeaderTests.m └── package.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ajackster/react-native-image-header/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .idea/ -------------------------------------------------------------------------------- /Example/Example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ajackster/react-native-image-header/HEAD/Example/Example.js -------------------------------------------------------------------------------- /Example/backgroundImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ajackster/react-native-image-header/HEAD/Example/backgroundImage.png -------------------------------------------------------------------------------- /Example/donaldduck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ajackster/react-native-image-header/HEAD/Example/donaldduck.png -------------------------------------------------------------------------------- /ImageHeader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ajackster/react-native-image-header/HEAD/ImageHeader.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ajackster/react-native-image-header/HEAD/README.md -------------------------------------------------------------------------------- /android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ajackster/react-native-image-header/HEAD/android/app/BUCK -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ajackster/react-native-image-header/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ajackster/react-native-image-header/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ajackster/react-native-image-header/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/java/com/reactnativeheader/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ajackster/react-native-image-header/HEAD/android/app/src/main/java/com/reactnativeheader/MainActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/reactnativeheader/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ajackster/react-native-image-header/HEAD/android/app/src/main/java/com/reactnativeheader/MainApplication.java -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ajackster/react-native-image-header/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ajackster/react-native-image-header/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ajackster/react-native-image-header/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ajackster/react-native-image-header/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ajackster/react-native-image-header/HEAD/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ajackster/react-native-image-header/HEAD/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ajackster/react-native-image-header/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ajackster/react-native-image-header/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ajackster/react-native-image-header/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ajackster/react-native-image-header/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ajackster/react-native-image-header/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ajackster/react-native-image-header/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/keystores/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ajackster/react-native-image-header/HEAD/android/keystores/BUCK -------------------------------------------------------------------------------- /android/keystores/debug.keystore.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ajackster/react-native-image-header/HEAD/android/keystores/debug.keystore.properties -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'ReactNativeHeader' 2 | 3 | include ':app' 4 | -------------------------------------------------------------------------------- /index.android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ajackster/react-native-image-header/HEAD/index.android.js -------------------------------------------------------------------------------- /index.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ajackster/react-native-image-header/HEAD/index.ios.js -------------------------------------------------------------------------------- /ios/ReactNativeHeader.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ajackster/react-native-image-header/HEAD/ios/ReactNativeHeader.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/ReactNativeHeader.xcodeproj/xcshareddata/xcschemes/ReactNativeHeader.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ajackster/react-native-image-header/HEAD/ios/ReactNativeHeader.xcodeproj/xcshareddata/xcschemes/ReactNativeHeader.xcscheme -------------------------------------------------------------------------------- /ios/ReactNativeHeader/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ajackster/react-native-image-header/HEAD/ios/ReactNativeHeader/AppDelegate.h -------------------------------------------------------------------------------- /ios/ReactNativeHeader/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ajackster/react-native-image-header/HEAD/ios/ReactNativeHeader/AppDelegate.m -------------------------------------------------------------------------------- /ios/ReactNativeHeader/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ajackster/react-native-image-header/HEAD/ios/ReactNativeHeader/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /ios/ReactNativeHeader/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ajackster/react-native-image-header/HEAD/ios/ReactNativeHeader/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/ReactNativeHeader/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ajackster/react-native-image-header/HEAD/ios/ReactNativeHeader/Info.plist -------------------------------------------------------------------------------- /ios/ReactNativeHeader/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ajackster/react-native-image-header/HEAD/ios/ReactNativeHeader/main.m -------------------------------------------------------------------------------- /ios/ReactNativeHeaderTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ajackster/react-native-image-header/HEAD/ios/ReactNativeHeaderTests/Info.plist -------------------------------------------------------------------------------- /ios/ReactNativeHeaderTests/ReactNativeHeaderTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ajackster/react-native-image-header/HEAD/ios/ReactNativeHeaderTests/ReactNativeHeaderTests.m -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ajackster/react-native-image-header/HEAD/package.json --------------------------------------------------------------------------------