diff --git a/lib/src/view/settings/board_behavior_settings_screen.dart b/lib/src/view/settings/board_behavior_settings_screen.dart index e74e566052..74d37ca394 100644 --- a/lib/src/view/settings/board_behavior_settings_screen.dart +++ b/lib/src/view/settings/board_behavior_settings_screen.dart @@ -59,6 +59,7 @@ class _Body extends ConsumerWidget { settingsLabel: Text(context.l10n.preferencesHowDoYouMovePieces), settingsValue: pieceShiftMethodl10n(context, boardPrefs.pieceShiftMethod), + showCupertinoTrailingValue: false, onTap: () { if (Theme.of(context).platform == TargetPlatform.android) { showChoicePicker( diff --git a/lib/src/view/settings/piece_shift_method_settings_screen.dart b/lib/src/view/settings/piece_shift_method_settings_screen.dart index fa0215517d..4edc23ba8d 100644 --- a/lib/src/view/settings/piece_shift_method_settings_screen.dart +++ b/lib/src/view/settings/piece_shift_method_settings_screen.dart @@ -41,7 +41,7 @@ String pieceShiftMethodl10n( // This is called 'Either' in the Web UI, but in the app we might display this string // without having the other values as context, so we need to be more explicit. // TODO add this to mobile translations - PieceShiftMethod.either => 'Click or drag pieces', + PieceShiftMethod.either => 'Either click or drag', PieceShiftMethod.drag => context.l10n.preferencesDragPiece, // TODO This string uses 'click', we might want to use 'tap' instead in a mobile-specific translation PieceShiftMethod.tapTwoSquares => context.l10n.preferencesClickTwoSquares,