easy_stepper
easy_stepper copied to clipboard
Line not centered with the step when lineThickness more than the default value is provided.
You can fix it inside this file 'package:easy_stepper/src/core/easy_line.dart'. Inside the build method: margin: EdgeInsets.only( top: lineType == LineType.dotted || lineType == LineType.dashed ? thickness : 0),
both the thickness value and zero should be replaced with thickness*0.5 to center the line with step when a greater lineThickness value is used.