From 24c8c27d51d2a749a10c41324902bcfe618d433c Mon Sep 17 00:00:00 2001 From: cogwheel0 <172976095+cogwheel0@users.noreply.github.com> Date: Tue, 4 Nov 2025 16:18:14 +0530 Subject: [PATCH] feat(tts): Remove pitch and volume sliders from app customization page --- .../profile/views/app_customization_page.dart | 36 ------------------- 1 file changed, 36 deletions(-) diff --git a/lib/features/profile/views/app_customization_page.dart b/lib/features/profile/views/app_customization_page.dart index a32707d..c4f989a 100644 --- a/lib/features/profile/views/app_customization_page.dart +++ b/lib/features/profile/views/app_customization_page.dart @@ -951,42 +951,6 @@ class AppCustomizationPage extends ConsumerWidget { .setTtsSpeechRate(value), ), const SizedBox(height: Spacing.md), - // Pitch Slider - _buildSliderTile( - context, - ref, - icon: UiUtils.platformIcon( - ios: CupertinoIcons.waveform, - android: Icons.graphic_eq, - ), - title: l10n.ttsPitch, - value: settings.ttsPitch, - min: 0.5, - max: 2.0, - divisions: 6, - label: settings.ttsPitch.toStringAsFixed(1), - onChanged: (value) => - ref.read(appSettingsProvider.notifier).setTtsPitch(value), - ), - const SizedBox(height: Spacing.md), - // Volume Slider - _buildSliderTile( - context, - ref, - icon: UiUtils.platformIcon( - ios: CupertinoIcons.volume_up, - android: Icons.volume_up, - ), - title: l10n.ttsVolume, - value: settings.ttsVolume, - min: 0.0, - max: 1.0, - divisions: 10, - label: '${(settings.ttsVolume * 100).round()}%', - onChanged: (value) => - ref.read(appSettingsProvider.notifier).setTtsVolume(value), - ), - const SizedBox(height: Spacing.md), // Preview Button _CustomizationTile( leading: _buildIconBadge(