react-native-app-intro-slider
react-native-app-intro-slider copied to clipboard
How can i move the pagination dots vertically up
Hello, I am new to react-native, can you help me to move the pagination dots vertically up, I am stuck and not know how can I achieve that.
You can add bottom margin to the dots using the dotStyle and activeDotStyle props like this:
<AppIntroSlider
renderItem={this.renderItem}
data={this.data}
dotStyle={{
marginBottom: 200,
}}
activeDotStyle={{
marginBottom: 200,
}}
{...}
/>
How i can allign dots to left or rigt positions if i will apply marging left it will give space between dots kindly help