nick / react-native-carousel

Carousel component for react-native
MIT License
458 stars 107 forks source link

Enabling custom indicator content #47

Closed shidhincr closed 8 years ago

shidhincr commented 8 years ago

Hi,

This PR is for customizing the indicator text. As of now, the indicator show only • html character. With this PR, we should be able to add any custom html characters.

My requirement was to achieve this:

screenshot

And, now I am able to do it by passing these props:


{
     inactiveIndicatorText: '○',
     indicatorText: '●',
}
shidhincr commented 8 years ago

👍