diff --git a/lib/widgets/custom_widget.dart b/lib/widgets/custom_widget.dart index b5506e3..b4f2ae7 100644 --- a/lib/widgets/custom_widget.dart +++ b/lib/widgets/custom_widget.dart @@ -1245,8 +1245,8 @@ class TabIndicator extends CustomPainter { index == 2 || fraction == 0 ? _accentPaint : _paint); if (fraction == 1) { canvas.drawLine( - Offset(size.width/2 - indicatorSize / 2, size.height), - Offset(size.width/2 + indicatorSize / 2, size.height), + Offset(size.width / 2 - indicatorSize / 2, size.height), + Offset(size.width / 2 + indicatorSize / 2, size.height), index == 1 || fraction == 0 ? _accentPaint : _paint); } }