I would like to change the indicator color but i don't know how to do so.
i try to change the renderIndicator by doing this.
(currentIndex, allSize) => <Text style={{color:'red'}}>currentIndex + "/" + allSize</Text> but it doesn't even show.
Please help !!
I would like to change the indicator color but i don't know how to do so.
i try to change the renderIndicator by doing this.
(currentIndex, allSize) => <Text style={{color:'red'}}>currentIndex + "/" + allSize</Text>but it doesn't even show.Please help !!
add style position: 'absolute' -> important
renderIndicator={(currentIndex, allSize) => (
<Text style={{ alignSelf: 'center', position: 'absolute', top: 10 }}>
{currentIndex + '/' + allSize}
</Text>
)}
Most helpful comment
add style position: 'absolute' -> important
renderIndicator={(currentIndex, allSize) => ( <Text style={{ alignSelf: 'center', position: 'absolute', top: 10 }}> {currentIndex + '/' + allSize} </Text> )}