ma7moud3osman / easy_stepper

Flutter Package help you to build easy stepper widget with several customization
https://pub.dev/packages/easy_stepper
MIT License
77 stars 38 forks source link

Add lineThickness #13

Closed mjablecnik closed 1 year ago

mjablecnik commented 1 year ago

I see that I can set borderThickness or lineLength but lineThickness I'm missing.

ma7moud3osman commented 1 year ago

Hi @mjablecnik , You can change line thickness by setting the lineDotRadius property which responsible for the dot radius if lineType set to LineType.dotted or the line thickness if the lineType is set to LineType.normal in this case

mjablecnik commented 1 year ago

@ma7moud3osman Yes, it works, thank you ;)

I am using lineType as LineType.normal and it is very hard to understand that lineDotRadius can change the thickness of the line. Do you think that you can rename it to lineThickness which will set the thickness of dotted and normal lines? I think that it can be more user friendly and more understandable.. :)

ma7moud3osman commented 1 year ago

Yes it's more readable to be 'lineThickness' instead of 'lineDotRadius' of course, I will rename it in the next release. Thank you @mjablecnik