
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
react-native-dw-carousel
Advanced tools
A carousel container component.
| Name | Type | Required | Default value | Description |
|---|---|---|---|---|
| Carousel.Page | React.Node | true | - | A component that will be rendered the pages Carousel |
| children | React.Node | false | null | A component that will be rendered inside the Carousel.Page. |
| initialPage | Integer | false | 0 | Set a initial page |
| hideIndicators | Boolean | false | false | Set to true to hide the indicators |
| indicatorColor | String | false | #FFFFFF | Active indicator color |
| indicatorSize | Float | false | 30 | Indicator bullet size |
| indicatorSpace | Float | false | 15 | Space between each indicator |
| inactiveIndicatorColor | String | false | #DDDDDD | Inactive indicator color |
| indicatorAtBottom | Boolean | false | true | Set to false to show the indicators at the top |
| indicatorOffset | Float | false | 0 | Indicator relative position from top or bottom |
| inactiveIndicatorText | String | false | '•' | Inactive indicator content ( You can customize to use any Unicode character ) |
| indicatorText | String | false | '•' | Active indicator content ( You can customize to use any Unicode character ) |
| animate | Boolean | false | false | Enable Carousel autoplay |
| delay | Integer | false | 1000 | Set Animation delay between slides |
| loop | Boolean | false | false | Allow infinite looped animation. Depends on Prop {...animate} set to true. |
| containerStyle | TStyle | false | {} | Style container - component Carousel |
| pageStyle | TStyle | false | {} | Style container - component Carousel.Page |
import Carousel from 'react-native-dw-tooltip'
...
render() {
...
return (
<Carousel
indicatorColor="red"
>
<Carousel.Page>
<View>
<Text>Content 1 - Page 1</Text>
</View>
<View>
<Text>Content 2 - Page 1</Text>
</View>
</Carousel.Page>
<Carousel.Page>
<View>
<Text>Content 1 - Page 2</Text>
</View>
<View>
<Text>Content 2 - Page 2</Text>
</View>
</Carousel.Page>
</Carousel>
)
...
FAQs
A carousel container component.
The npm package react-native-dw-carousel receives a total of 2 weekly downloads. As such, react-native-dw-carousel popularity was classified as not popular.
We found that react-native-dw-carousel 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.