
Security News
npm Adopts OIDC for Trusted Publishing in CI/CD Workflows
npm now supports Trusted Publishing with OIDC, enabling secure package publishing directly from CI/CD workflows without relying on long-lived tokens.
react-native-zoom-lightbox
Advanced tools
$ npm install react-native-zoom-lightbox --save
import {SingleImage} from 'react-native-zoom-lightbox';
<SingleImage
uri='https://avatars2.githubusercontent.com/u/31804215?s=40&v=4'
style={{}} />
Prop | Type | Description |
---|---|---|
uri | string | Url of image |
style | object | Style of Image component |
You need to wrap your container with a HOC named wrapperZoomImages to get the required props (see example.
import {wrapperZoomImages,ImageInWraper } from 'react-native-zoom-lightbox'
export default wrapperZoomImages(YourContainer);
Array of images must be saved at state named arrayImages.
constructor(props){
super(props);
this.state={
arrayImages : [
{url:'example',
},
{url:'example' }],
};
}
const {getOpacity,captureCarouselItem,indexState,open} = this.props;
const {arrayImages} = this.state;
<View style={{ flex:1,alignItems:'center' }}>
{
this.state.arrayImages.map((item,index) =>
<ImageInWraper
open={open}
indexState={indexState}
getOpacity={getOpacity}
captureCarouselItem={captureCarouselItem}
index={index}
url={item.url}
style={{marginBottom:20}}
/>
)
}
</View>
or
<View style={{ flex:1,alignItems:'center' }}>
<ImageInWraper
open={open}
indexState={indexState}
getOpacity={getOpacity}
captureCarouselItem={captureCarouselItem}
index={0}
url={this.state.arrayImages[0].url}
style={{marginBottom:20}}
/>
<Text>Example</Text>
<ImageInWraper
open={open}
indexState={indexState}
getOpacity={getOpacity}
captureCarouselItem={captureCarouselItem}
index={1}
url={this.state.arrayImages[1].url}
style={{marginBottom:20}}
/>
</View>
ImageInWraper
Prop | Type | Required | Description |
---|---|---|---|
uri | string | yes | Url of image |
style | object | no | Style of Image component |
index | number | yes | Index of Image |
captureCarouselItem | func | yes | Props received from HOC |
getOpacity | func | yes | Props received from HOC |
indexState | number | yes | Props received from HOC |
open | string | yes | Props received from HOC |
FAQs
## Demo
The npm package react-native-zoom-lightbox receives a total of 10 weekly downloads. As such, react-native-zoom-lightbox popularity was classified as not popular.
We found that react-native-zoom-lightbox demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
npm now supports Trusted Publishing with OIDC, enabling secure package publishing directly from CI/CD workflows without relying on long-lived tokens.
Research
/Security News
A RubyGems malware campaign used 60 malicious packages posing as automation tools to steal credentials from social media and marketing tool users.
Security News
The CNA Scorecard ranks CVE issuers by data completeness, revealing major gaps in patch info and software identifiers across thousands of vulnerabilities.