thegamenicorus / react-native-timeline-listview

Timeline component for React Native App
https://www.npmjs.com/package/react-native-timeline-listview
MIT License
1.17k stars 184 forks source link

can we align starting point of circle main label in same line #60

Open zymr-viveksharma opened 5 years ago

zymr-viveksharma commented 5 years ago

screen shot 2018-12-12 at 12 28 23 pm

vamsiabishek commented 5 years ago

@VivekSharma-zymr temporary work around can be increasing the circle size, 'circleSize={35}'

Ajamuar commented 5 years ago

Is there another way to shift the circle a little below so as to align it against a label?

NLegendre commented 4 years ago

Hi,

I found a simple solution : add some negative marginTop on the title.

You can use the prop "titleStyle" :

<Timeline data={this.data} titleStyle={{marginTop:-10}} />

Adjust the margin to your need (and the size of the circles).