From 21ff38d35383d079036b77781d8b1abe8155db6c Mon Sep 17 00:00:00 2001 From: "louis.borlee" Date: Tue, 26 Mar 2024 10:31:28 +0100 Subject: [PATCH] [Slider#1977] Updated Slider handle size from 24x24 to 32x32 --- core/Sources/Components/Slider/Constant/SliderConstants.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/Sources/Components/Slider/Constant/SliderConstants.swift b/core/Sources/Components/Slider/Constant/SliderConstants.swift index b44c8001c..ca5702562 100644 --- a/core/Sources/Components/Slider/Constant/SliderConstants.swift +++ b/core/Sources/Components/Slider/Constant/SliderConstants.swift @@ -9,7 +9,7 @@ import Foundation enum SliderConstants { - static let handleSize = CGSize(width: 24, height: 24) - static let activeIndicatorSize = CGSize(width: 32, height: 32) + static let handleSize = CGSize(width: 32, height: 32) + static let activeIndicatorSize = CGSize(width: 40, height: 40) static let barHeight: CGFloat = 4.0 }