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:
parent
b6163e8efe
commit
d61427d7f6
|
|
@ -66,6 +66,16 @@ class DisplaySettingsSection extends ConsumerWidget {
|
|||
trailing: Icon(LucideIcons.chevronRight, color: appColors.iconSubtle),
|
||||
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),
|
||||
),
|
||||
],
|
||||
),
|
||||
),
|
||||
|
|
|
|||
Loading…
Reference in New Issue