diff --git a/lib/pages/routines/widgets/slider_value_selector.dart b/lib/pages/routines/widgets/slider_value_selector.dart index dfcfeac4..db5c4675 100644 --- a/lib/pages/routines/widgets/slider_value_selector.dart +++ b/lib/pages/routines/widgets/slider_value_selector.dart @@ -83,7 +83,7 @@ class SliderValueSelector extends StatelessWidget { filled: true, fillColor: ColorsManager.textFieldGreyColor.withOpacity(0.5), suffixText: unit, - hintStyle: context.textTheme.headlineMedium!.copyWith( + suffixStyle: context.textTheme.headlineMedium!.copyWith( color: ColorsManager.primaryColorWithOpacity, ), ), @@ -94,14 +94,14 @@ class SliderValueSelector extends StatelessWidget { children: [ Text( 'Min: ${sliderRange.$1}', - style: context.textTheme.bodySmall!.copyWith( + style: context.textTheme.labelSmall!.copyWith( color: ColorsManager.lightGrayColor, ), ), const Spacer(), Text( 'Max: ${sliderRange.$2}', - style: context.textTheme.bodySmall!.copyWith( + style: context.textTheme.labelSmall!.copyWith( color: ColorsManager.lightGrayColor, ), ),