easy_stepper icon indicating copy to clipboard operation
easy_stepper copied to clipboard

Line not centered with the step when lineThickness more than the default value is provided.

Open aa-ghafoori opened this issue 9 months ago • 0 comments

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. Capture

aa-ghafoori avatar May 15 '24 20:05 aa-ghafoori