From 522481ad9366603c70e751b8edb0145f922191ab Mon Sep 17 00:00:00 2001 From: stonega Date: Tue, 16 Feb 2021 22:57:58 +0800 Subject: [PATCH] Minor change. --- lib/widgets/custom_widget.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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); } }