react-native-bgimage
v1.4.0
Published
Background image view for react native
Downloads
5
Maintainers
Readme
react-native-bgimage
Background images for react native
Renders your android res/drawable* images in tiling mode (repeated background) in most optimized way.
Installation
- put your images in drawables directory: android/app/src/main/res/drawable-[m|h|x|xx|xxx]dpi
- run: npm install --save react-native-bgimage
- run: react-native link react-native-bgimage (or link it manually)
For React Native version < 0.47.x you must use older not compatible version use npm install [email protected] to specify it
To manual link
- add to android/settings.gradle :
include ':react-native-bgimage'
project(':react-native-bgimage').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-bgimage/android')
- add to android/app/build.gradle in section dependencies { ... } :
compile project(':react-native-bgimage')
- add new BgImagePackage() call in method getPackages() of android/app/src/main/java/.../MainApplication.java :
@Override
protected List<ReactPackage> getPackages() {
return Arrays.<ReactPackage>asList(
new MainReactPackage(),
new BgImagePackage(), // <-- add here
// other modules...
);
}
IOS
When linking consider RNTBgImage.xcodeproj is in Libraries group. All images for usage must be available in Images.xcassets catalog.
React Native usage (JS)
import BgImage from 'react-native-bgimage';
render() {
return <BgImage drawable="testbg" style={{height:64}}>
<Text style={{textAlign: 'center'}}>Hello!</Text>
</BgImage>
}
where testbg resides in android/app/src/main/res/drawable-hdpi/testbg.png