feat: add grid text toggle to display settings (promoted from DevMenu)

一覧テキスト表示のON/OFFをSoulScreenの表示設定から操作可能に。
DevMenuのままだった機能を正式設定として昇格。

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Ponshu Developer 2026-04-05 07:26:42 +09:00
parent b6163e8efe
commit d61427d7f6
1 changed files with 10 additions and 0 deletions

View File

@ -66,6 +66,16 @@ class DisplaySettingsSection extends ConsumerWidget {
trailing: Icon(LucideIcons.chevronRight, color: appColors.iconSubtle), trailing: Icon(LucideIcons.chevronRight, color: appColors.iconSubtle),
onTap: () => _showThemeDialog(context, ref, themeMode), onTap: () => _showThemeDialog(context, ref, themeMode),
), ),
Divider(height: 1, color: appColors.divider),
// 5.
SwitchListTile(
secondary: Icon(LucideIcons.textCursorInput, color: appColors.iconDefault),
title: Text('一覧にテキストを表示', style: TextStyle(color: appColors.textPrimary)),
subtitle: Text('写真上に銘柄名・蔵元を重ねて表示', style: TextStyle(color: appColors.textSecondary)),
value: experiment.showGridText,
onChanged: (val) => ref.read(uiExperimentProvider.notifier).setShowGridText(val),
),
], ],
), ),
), ),