Unverified Commit b3c237ce authored by Justin McCandless's avatar Justin McCandless Committed by GitHub

Modernize selection menu appearance (#59115)

parent c79de782
...@@ -872,19 +872,19 @@ class DefaultMaterialLocalizations implements MaterialLocalizations { ...@@ -872,19 +872,19 @@ class DefaultMaterialLocalizations implements MaterialLocalizations {
String get continueButtonLabel => 'CONTINUE'; String get continueButtonLabel => 'CONTINUE';
@override @override
String get copyButtonLabel => 'COPY'; String get copyButtonLabel => 'Copy';
@override @override
String get cutButtonLabel => 'CUT'; String get cutButtonLabel => 'Cut';
@override @override
String get okButtonLabel => 'OK'; String get okButtonLabel => 'OK';
@override @override
String get pasteButtonLabel => 'PASTE'; String get pasteButtonLabel => 'Paste';
@override @override
String get selectAllButtonLabel => 'SELECT ALL'; String get selectAllButtonLabel => 'Select all';
@override @override
String get viewLicensesButtonLabel => 'VIEW LICENSES'; String get viewLicensesButtonLabel => 'VIEW LICENSES';
......
...@@ -11,6 +11,9 @@ import 'package:flutter/scheduler.dart'; ...@@ -11,6 +11,9 @@ import 'package:flutter/scheduler.dart';
import 'package:flutter/services.dart'; import 'package:flutter/services.dart';
import 'package:flutter/widgets.dart'; import 'package:flutter/widgets.dart';
import 'button_theme.dart';
import 'colors.dart';
import 'constants.dart';
import 'debug.dart'; import 'debug.dart';
import 'flat_button.dart'; import 'flat_button.dart';
import 'icon_button.dart'; import 'icon_button.dart';
...@@ -54,6 +57,18 @@ class _TextSelectionToolbar extends StatefulWidget { ...@@ -54,6 +57,18 @@ class _TextSelectionToolbar extends StatefulWidget {
_TextSelectionToolbarState createState() => _TextSelectionToolbarState(); _TextSelectionToolbarState createState() => _TextSelectionToolbarState();
} }
// Intermediate data used for building menu items with the _getItems method.
class _ItemData {
const _ItemData(
this.onPressed,
this.label,
) : assert(onPressed != null),
assert(label != null);
final VoidCallback onPressed;
final String label;
}
class _TextSelectionToolbarState extends State<_TextSelectionToolbar> with TickerProviderStateMixin { class _TextSelectionToolbarState extends State<_TextSelectionToolbar> with TickerProviderStateMixin {
ClipboardStatusNotifier _clipboardStatus; ClipboardStatusNotifier _clipboardStatus;
...@@ -65,11 +80,25 @@ class _TextSelectionToolbarState extends State<_TextSelectionToolbar> with Ticke ...@@ -65,11 +80,25 @@ class _TextSelectionToolbarState extends State<_TextSelectionToolbar> with Ticke
// The key for _TextSelectionToolbarContainer. // The key for _TextSelectionToolbarContainer.
UniqueKey _containerKey = UniqueKey(); UniqueKey _containerKey = UniqueKey();
FlatButton _getItem(VoidCallback onPressed, String label) { Widget _getItem(_ItemData itemData, bool isFirst, bool isLast) {
assert(onPressed != null); assert(isFirst != null);
return FlatButton( assert(isLast != null);
child: Text(label), return ButtonTheme.fromButtonThemeData(
onPressed: onPressed, data: ButtonTheme.of(context).copyWith(
height: kMinInteractiveDimension,
minWidth: kMinInteractiveDimension,
),
child: FlatButton(
onPressed: itemData.onPressed,
padding: EdgeInsets.only(
// These values were eyeballed to match the native text selection menu
// on a Pixel 2 running Android 10.
left: 9.5 + (isFirst ? 5.0 : 0.0),
right: 9.5 + (isLast ? 5.0 : 0.0),
),
shape: Border.all(width: 0.0, color: Colors.transparent),
child: Text(itemData.label),
),
); );
} }
...@@ -153,20 +182,20 @@ class _TextSelectionToolbarState extends State<_TextSelectionToolbar> with Ticke ...@@ -153,20 +182,20 @@ class _TextSelectionToolbarState extends State<_TextSelectionToolbar> with Ticke
} }
final MaterialLocalizations localizations = MaterialLocalizations.of(context); final MaterialLocalizations localizations = MaterialLocalizations.of(context);
final List<Widget> items = <Widget>[ final List<_ItemData> itemDatas = <_ItemData>[
if (widget.handleCut != null) if (widget.handleCut != null)
_getItem(widget.handleCut, localizations.cutButtonLabel), _ItemData(widget.handleCut, localizations.cutButtonLabel),
if (widget.handleCopy != null) if (widget.handleCopy != null)
_getItem(widget.handleCopy, localizations.copyButtonLabel), _ItemData(widget.handleCopy, localizations.copyButtonLabel),
if (widget.handlePaste != null if (widget.handlePaste != null
&& _clipboardStatus.value == ClipboardStatus.pasteable) && _clipboardStatus.value == ClipboardStatus.pasteable)
_getItem(widget.handlePaste, localizations.pasteButtonLabel), _ItemData(widget.handlePaste, localizations.pasteButtonLabel),
if (widget.handleSelectAll != null) if (widget.handleSelectAll != null)
_getItem(widget.handleSelectAll, localizations.selectAllButtonLabel), _ItemData(widget.handleSelectAll, localizations.selectAllButtonLabel),
]; ];
// If there is no option available, build an empty widget. // If there is no option available, build an empty widget.
if (items.isEmpty) { if (itemDatas.isEmpty) {
return const SizedBox(width: 0.0, height: 0.0); return const SizedBox(width: 0.0, height: 0.0);
} }
...@@ -179,7 +208,12 @@ class _TextSelectionToolbarState extends State<_TextSelectionToolbar> with Ticke ...@@ -179,7 +208,12 @@ class _TextSelectionToolbarState extends State<_TextSelectionToolbar> with Ticke
// API 28. // API 28.
duration: const Duration(milliseconds: 140), duration: const Duration(milliseconds: 140),
child: Material( child: Material(
// This value was eyeballed to match the native text selection menu on
// a Pixel 2 running Android 10.
borderRadius: const BorderRadius.all(Radius.circular(7.0)),
clipBehavior: Clip.antiAlias,
elevation: 1.0, elevation: 1.0,
type: MaterialType.card,
child: _TextSelectionToolbarItems( child: _TextSelectionToolbarItems(
isAbove: widget.isAbove, isAbove: widget.isAbove,
overflowOpen: _overflowOpen, overflowOpen: _overflowOpen,
...@@ -187,6 +221,7 @@ class _TextSelectionToolbarState extends State<_TextSelectionToolbar> with Ticke ...@@ -187,6 +221,7 @@ class _TextSelectionToolbarState extends State<_TextSelectionToolbar> with Ticke
// The navButton that shows and hides the overflow menu is the // The navButton that shows and hides the overflow menu is the
// first child. // first child.
Material( Material(
type: MaterialType.card,
child: IconButton( child: IconButton(
// TODO(justinmc): This should be an AnimatedIcon, but // TODO(justinmc): This should be an AnimatedIcon, but
// AnimatedIcons doesn't yet support arrow_back to more_vert. // AnimatedIcons doesn't yet support arrow_back to more_vert.
...@@ -202,7 +237,8 @@ class _TextSelectionToolbarState extends State<_TextSelectionToolbar> with Ticke ...@@ -202,7 +237,8 @@ class _TextSelectionToolbarState extends State<_TextSelectionToolbar> with Ticke
: localizations.moreButtonTooltip, : localizations.moreButtonTooltip,
), ),
), ),
...items, for (int i = 0; i < itemDatas.length; i++)
_getItem(itemDatas[i], i == 0, i == itemDatas.length - 1)
], ],
), ),
), ),
......
...@@ -175,7 +175,7 @@ void main() { ...@@ -175,7 +175,7 @@ void main() {
setUp(() async { setUp(() async {
EditableText.debugDeterministicCursor = false; EditableText.debugDeterministicCursor = false;
// Fill the clipboard so that the PASTE option is available in the text // Fill the clipboard so that the Paste option is available in the text
// selection menu. // selection menu.
await Clipboard.setData(const ClipboardData(text: 'Clipboard data')); await Clipboard.setData(const ClipboardData(text: 'Clipboard data'));
}); });
......
...@@ -507,7 +507,7 @@ void main() { ...@@ -507,7 +507,7 @@ void main() {
); );
// Default US "select all" text. // Default US "select all" text.
expect(find.text('SELECT ALL'), findsOneWidget); expect(find.text('Select all'), findsOneWidget);
// Default Cupertino US "select all" text. // Default Cupertino US "select all" text.
expect(find.text('Select All'), findsOneWidget); expect(find.text('Select All'), findsOneWidget);
}); });
......
...@@ -73,7 +73,7 @@ void main() { ...@@ -73,7 +73,7 @@ void main() {
fieldLabelText = null; fieldLabelText = null;
helpText = null; helpText = null;
// Fill the clipboard so that the PASTE option is available in the text // Fill the clipboard so that the Paste option is available in the text
// selection menu. // selection menu.
SystemChannels.platform.setMockMethodCallHandler(mockClipboard.handleMethodCall); SystemChannels.platform.setMockMethodCallHandler(mockClipboard.handleMethodCall);
await Clipboard.setData(const ClipboardData(text: 'Clipboard data')); await Clipboard.setData(const ClipboardData(text: 'Clipboard data'));
......
...@@ -32,7 +32,7 @@ void main() { ...@@ -32,7 +32,7 @@ void main() {
final MockClipboard mockClipboard = MockClipboard(); final MockClipboard mockClipboard = MockClipboard();
setUp(() async { setUp(() async {
// Fill the clipboard so that the PASTE option is available in the text // Fill the clipboard so that the Paste option is available in the text
// selection menu. // selection menu.
SystemChannels.platform.setMockMethodCallHandler(mockClipboard.handleMethodCall); SystemChannels.platform.setMockMethodCallHandler(mockClipboard.handleMethodCall);
await Clipboard.setData(const ClipboardData(text: 'Clipboard data')); await Clipboard.setData(const ClipboardData(text: 'Clipboard data'));
......
...@@ -146,7 +146,7 @@ void main() { ...@@ -146,7 +146,7 @@ void main() {
setUp(() async { setUp(() async {
debugResetSemanticsIdCounter(); debugResetSemanticsIdCounter();
// Fill the clipboard so that the PASTE option is available in the text // Fill the clipboard so that the Paste option is available in the text
// selection menu. // selection menu.
await Clipboard.setData(const ClipboardData(text: 'Clipboard data')); await Clipboard.setData(const ClipboardData(text: 'Clipboard data'));
}); });
...@@ -445,7 +445,7 @@ void main() { ...@@ -445,7 +445,7 @@ void main() {
await tester.pump(const Duration(seconds: 1)); await tester.pump(const Duration(seconds: 1));
// Sanity check that the toolbar widget exists. // Sanity check that the toolbar widget exists.
expect(find.text('PASTE'), findsOneWidget); expect(find.text('Paste'), findsOneWidget);
await expectLater( await expectLater(
// The toolbar exists in the Overlay above the MaterialApp. // The toolbar exists in the Overlay above the MaterialApp.
...@@ -627,11 +627,11 @@ void main() { ...@@ -627,11 +627,11 @@ void main() {
await tester.tapAt(textfieldStart + const Offset(150.0, 9.0)); await tester.tapAt(textfieldStart + const Offset(150.0, 9.0));
await tester.pump(); await tester.pump();
// Selected text shows 'COPY', and not 'PASTE', 'CUT', 'SELECT ALL'. // Selected text shows 'Copy', and not 'Paste', 'Cut', 'Select all'.
expect(find.text('PASTE'), findsNothing); expect(find.text('Paste'), findsNothing);
expect(find.text('COPY'), findsOneWidget); expect(find.text('Copy'), findsOneWidget);
expect(find.text('CUT'), findsNothing); expect(find.text('Cut'), findsNothing);
expect(find.text('SELECT ALL'), findsNothing); expect(find.text('Select all'), findsNothing);
}, },
variant: const TargetPlatformVariant(<TargetPlatform>{ variant: const TargetPlatformVariant(<TargetPlatform>{
TargetPlatform.android, TargetPlatform.android,
...@@ -980,13 +980,13 @@ void main() { ...@@ -980,13 +980,13 @@ void main() {
), ),
)); ));
expect(find.text('PASTE'), findsNothing); expect(find.text('Paste'), findsNothing);
final Offset emptyPos = textOffsetToPosition(tester, 0); final Offset emptyPos = textOffsetToPosition(tester, 0);
await tester.longPressAt(emptyPos, pointer: 7); await tester.longPressAt(emptyPos, pointer: 7);
await tester.pumpAndSettle(); await tester.pumpAndSettle();
expect(find.text('PASTE'), findsOneWidget); expect(find.text('Paste'), findsOneWidget);
}); });
testWidgets('Entering text hides selection handle caret', (WidgetTester tester) async { testWidgets('Entering text hides selection handle caret', (WidgetTester tester) async {
...@@ -1092,9 +1092,9 @@ void main() { ...@@ -1092,9 +1092,9 @@ void main() {
await tester.pumpAndSettle(); await tester.pumpAndSettle();
// Context menu should not have paste and cut. // Context menu should not have paste and cut.
expect(find.text('COPY'), findsOneWidget); expect(find.text('Copy'), findsOneWidget);
expect(find.text('PASTE'), findsNothing); expect(find.text('Paste'), findsNothing);
expect(find.text('CUT'), findsNothing); expect(find.text('Cut'), findsNothing);
}); });
testWidgets('does not paint toolbar when no options available', (WidgetTester tester) async { testWidgets('does not paint toolbar when no options available', (WidgetTester tester) async {
...@@ -1630,14 +1630,14 @@ void main() { ...@@ -1630,14 +1630,14 @@ void main() {
await tester.pump(); await tester.pump();
await tester.pump(const Duration(milliseconds: 200)); // skip past the frame where the opacity is zero await tester.pump(const Duration(milliseconds: 200)); // skip past the frame where the opacity is zero
// SELECT ALL should select all the text. // Select all should select all the text.
await tester.tap(find.text('SELECT ALL')); await tester.tap(find.text('Select all'));
await tester.pump(); await tester.pump();
expect(controller.selection.baseOffset, 0); expect(controller.selection.baseOffset, 0);
expect(controller.selection.extentOffset, testValue.length); expect(controller.selection.extentOffset, testValue.length);
// COPY should reset the selection. // Copy should reset the selection.
await tester.tap(find.text('COPY')); await tester.tap(find.text('Copy'));
await skipPastScrollingAnimation(tester); await skipPastScrollingAnimation(tester);
expect(controller.selection.isCollapsed, true); expect(controller.selection.isCollapsed, true);
...@@ -1661,8 +1661,8 @@ void main() { ...@@ -1661,8 +1661,8 @@ void main() {
expect(controller.selection.baseOffset, testValue.indexOf('e')); expect(controller.selection.baseOffset, testValue.indexOf('e'));
expect(controller.selection.extentOffset, testValue.indexOf('e')); expect(controller.selection.extentOffset, testValue.indexOf('e'));
// PASTE right before the 'e'. // Paste right before the 'e'.
await tester.tap(find.text('PASTE')); await tester.tap(find.text('Paste'));
await tester.pump(); await tester.pump();
expect(controller.text, 'abc d${testValue}ef ghi'); expect(controller.text, 'abc d${testValue}ef ghi');
}); });
...@@ -1673,7 +1673,7 @@ void main() { ...@@ -1673,7 +1673,7 @@ void main() {
await tester.tapAt(tester.getCenter(find.byType(EditableText))); await tester.tapAt(tester.getCenter(find.byType(EditableText)));
await tester.pump(); await tester.pump();
await tester.pump(const Duration(milliseconds: 200)); // skip past the frame where the opacity is zero await tester.pump(const Duration(milliseconds: 200)); // skip past the frame where the opacity is zero
expect(find.text('SELECT ALL'), findsNothing); expect(find.text('Select all'), findsNothing);
// Tap the selection handle to bring up the "paste / select all" menu for // Tap the selection handle to bring up the "paste / select all" menu for
// the last line of text. // the last line of text.
...@@ -1719,7 +1719,7 @@ void main() { ...@@ -1719,7 +1719,7 @@ void main() {
await _showSelectionMenuAt(tester, controller, testValue.indexOf('e')); await _showSelectionMenuAt(tester, controller, testValue.indexOf('e'));
// Verify the selection toolbar position is below the text. // Verify the selection toolbar position is below the text.
Offset toolbarTopLeft = tester.getTopLeft(find.text('SELECT ALL')); Offset toolbarTopLeft = tester.getTopLeft(find.text('Select all'));
Offset textFieldTopLeft = tester.getTopLeft(find.byType(TextField)); Offset textFieldTopLeft = tester.getTopLeft(find.byType(TextField));
expect(textFieldTopLeft.dy, lessThan(toolbarTopLeft.dy)); expect(textFieldTopLeft.dy, lessThan(toolbarTopLeft.dy));
...@@ -1740,7 +1740,7 @@ void main() { ...@@ -1740,7 +1740,7 @@ void main() {
await _showSelectionMenuAt(tester, controller, testValue.indexOf('e')); await _showSelectionMenuAt(tester, controller, testValue.indexOf('e'));
// Verify the selection toolbar position // Verify the selection toolbar position
toolbarTopLeft = tester.getTopLeft(find.text('SELECT ALL')); toolbarTopLeft = tester.getTopLeft(find.text('Select all'));
textFieldTopLeft = tester.getTopLeft(find.byType(TextField)); textFieldTopLeft = tester.getTopLeft(find.byType(TextField));
expect(toolbarTopLeft.dy, lessThan(textFieldTopLeft.dy)); expect(toolbarTopLeft.dy, lessThan(textFieldTopLeft.dy));
}, },
...@@ -1766,7 +1766,7 @@ void main() { ...@@ -1766,7 +1766,7 @@ void main() {
), ),
)); ));
expect(find.text('SELECT ALL'), findsNothing); expect(find.text('Select all'), findsNothing);
const String testValue = 'abc\ndef\nghi\njkl\nmno\npqr'; const String testValue = 'abc\ndef\nghi\njkl\nmno\npqr';
await tester.enterText(find.byType(TextField), testValue); await tester.enterText(find.byType(TextField), testValue);
await skipPastScrollingAnimation(tester); await skipPastScrollingAnimation(tester);
...@@ -1774,8 +1774,8 @@ void main() { ...@@ -1774,8 +1774,8 @@ void main() {
// Show the selection menu on the first line and verify the selection // Show the selection menu on the first line and verify the selection
// toolbar position is below the first line. // toolbar position is below the first line.
await _showSelectionMenuAt(tester, controller, testValue.indexOf('c')); await _showSelectionMenuAt(tester, controller, testValue.indexOf('c'));
expect(find.text('SELECT ALL'), findsOneWidget); expect(find.text('Select all'), findsOneWidget);
final Offset firstLineToolbarTopLeft = tester.getTopLeft(find.text('SELECT ALL')); final Offset firstLineToolbarTopLeft = tester.getTopLeft(find.text('Select all'));
final Offset firstLineTopLeft = textOffsetToPosition(tester, testValue.indexOf('a')); final Offset firstLineTopLeft = textOffsetToPosition(tester, testValue.indexOf('a'));
expect(firstLineTopLeft.dy, lessThan(firstLineToolbarTopLeft.dy)); expect(firstLineTopLeft.dy, lessThan(firstLineToolbarTopLeft.dy));
...@@ -1783,8 +1783,8 @@ void main() { ...@@ -1783,8 +1783,8 @@ void main() {
// selection toolbar position is above that line and above the first // selection toolbar position is above that line and above the first
// line's toolbar. // line's toolbar.
await _showSelectionMenuAt(tester, controller, testValue.indexOf('o')); await _showSelectionMenuAt(tester, controller, testValue.indexOf('o'));
expect(find.text('SELECT ALL'), findsOneWidget); expect(find.text('Select all'), findsOneWidget);
final Offset penultimateLineToolbarTopLeft = tester.getTopLeft(find.text('SELECT ALL')); final Offset penultimateLineToolbarTopLeft = tester.getTopLeft(find.text('Select all'));
final Offset penultimateLineTopLeft = textOffsetToPosition(tester, testValue.indexOf('p')); final Offset penultimateLineTopLeft = textOffsetToPosition(tester, testValue.indexOf('p'));
expect(penultimateLineToolbarTopLeft.dy, lessThan(penultimateLineTopLeft.dy)); expect(penultimateLineToolbarTopLeft.dy, lessThan(penultimateLineTopLeft.dy));
expect(penultimateLineToolbarTopLeft.dy, lessThan(firstLineToolbarTopLeft.dy)); expect(penultimateLineToolbarTopLeft.dy, lessThan(firstLineToolbarTopLeft.dy));
...@@ -1793,8 +1793,8 @@ void main() { ...@@ -1793,8 +1793,8 @@ void main() {
// toolbar position is above that line and below the position of the // toolbar position is above that line and below the position of the
// second to last line's toolbar. // second to last line's toolbar.
await _showSelectionMenuAt(tester, controller, testValue.indexOf('r')); await _showSelectionMenuAt(tester, controller, testValue.indexOf('r'));
expect(find.text('SELECT ALL'), findsOneWidget); expect(find.text('Select all'), findsOneWidget);
final Offset lastLineToolbarTopLeft = tester.getTopLeft(find.text('SELECT ALL')); final Offset lastLineToolbarTopLeft = tester.getTopLeft(find.text('Select all'));
final Offset lastLineTopLeft = textOffsetToPosition(tester, testValue.indexOf('p')); final Offset lastLineTopLeft = textOffsetToPosition(tester, testValue.indexOf('p'));
expect(lastLineToolbarTopLeft.dy, lessThan(lastLineTopLeft.dy)); expect(lastLineToolbarTopLeft.dy, lessThan(lastLineTopLeft.dy));
expect(lastLineToolbarTopLeft.dy, greaterThan(penultimateLineToolbarTopLeft.dy)); expect(lastLineToolbarTopLeft.dy, greaterThan(penultimateLineToolbarTopLeft.dy));
...@@ -1832,7 +1832,7 @@ void main() { ...@@ -1832,7 +1832,7 @@ void main() {
await tester.pump(); await tester.pump();
// Toolbar should fade in. Starting at 0% opacity. // Toolbar should fade in. Starting at 0% opacity.
final Element target = tester.element(find.text('SELECT ALL')); final Element target = tester.element(find.text('Select all'));
final FadeTransition opacity = target.findAncestorWidgetOfExactType<FadeTransition>(); final FadeTransition opacity = target.findAncestorWidgetOfExactType<FadeTransition>();
expect(opacity, isNotNull); expect(opacity, isNotNull);
expect(opacity.opacity.value, equals(0.0)); expect(opacity.opacity.value, equals(0.0));
...@@ -1942,10 +1942,10 @@ void main() { ...@@ -1942,10 +1942,10 @@ void main() {
await tester.pumpAndSettle(); await tester.pumpAndSettle();
// Should only have paste option when whole obscure text is selected. // Should only have paste option when whole obscure text is selected.
expect(find.text('PASTE'), findsOneWidget); expect(find.text('Paste'), findsOneWidget);
expect(find.text('COPY'), findsNothing); expect(find.text('Copy'), findsNothing);
expect(find.text('CUT'), findsNothing); expect(find.text('Cut'), findsNothing);
expect(find.text('SELECT ALL'), findsNothing); expect(find.text('Select all'), findsNothing);
// Long press at the end // Long press at the end
final Offset iPos = textOffsetToPosition(tester, 10); final Offset iPos = textOffsetToPosition(tester, 10);
...@@ -1954,10 +1954,10 @@ void main() { ...@@ -1954,10 +1954,10 @@ void main() {
await tester.pumpAndSettle(); await tester.pumpAndSettle();
// Should have paste and select all options when collapse. // Should have paste and select all options when collapse.
expect(find.text('PASTE'), findsOneWidget); expect(find.text('Paste'), findsOneWidget);
expect(find.text('SELECT ALL'), findsOneWidget); expect(find.text('Select all'), findsOneWidget);
expect(find.text('COPY'), findsNothing); expect(find.text('Copy'), findsNothing);
expect(find.text('CUT'), findsNothing); expect(find.text('Cut'), findsNothing);
}); });
testWidgets('TextField height with minLines unset', (WidgetTester tester) async { testWidgets('TextField height with minLines unset', (WidgetTester tester) async {
...@@ -2436,7 +2436,7 @@ void main() { ...@@ -2436,7 +2436,7 @@ void main() {
expect(controller.selection.baseOffset, 5); expect(controller.selection.baseOffset, 5);
expect(controller.selection.extentOffset, 50); expect(controller.selection.extentOffset, 50);
await tester.tap(find.text('CUT')); await tester.tap(find.text('Cut'));
await tester.pump(); await tester.pump();
expect(controller.selection.isCollapsed, true); expect(controller.selection.isCollapsed, true);
expect(controller.text, cutValue); expect(controller.text, cutValue);
...@@ -3234,7 +3234,7 @@ void main() { ...@@ -3234,7 +3234,7 @@ void main() {
await tester.pump(const Duration(milliseconds: 200)); // skip past the frame where the opacity is zero await tester.pump(const Duration(milliseconds: 200)); // skip past the frame where the opacity is zero
Clipboard.setData(const ClipboardData(text: '一4二\n5三6')); Clipboard.setData(const ClipboardData(text: '一4二\n5三6'));
await tester.tap(find.text('PASTE')); await tester.tap(find.text('Paste'));
await tester.pump(); await tester.pump();
// Puts 456 before the 2 in 123. // Puts 456 before the 2 in 123.
expect(textController.text, '145623'); expect(textController.text, '145623');
...@@ -6047,14 +6047,14 @@ void main() { ...@@ -6047,14 +6047,14 @@ void main() {
await tester.pump(const Duration(milliseconds: 50)); await tester.pump(const Duration(milliseconds: 50));
await tester.tapAt(textOffsetToPosition(tester, 0)); await tester.tapAt(textOffsetToPosition(tester, 0));
await tester.pumpAndSettle(); await tester.pumpAndSettle();
expect(find.text('PASTE'), findsOneWidget); expect(find.text('Paste'), findsOneWidget);
// Double tap again keeps the selection menu visible. // Double tap again keeps the selection menu visible.
await tester.tapAt(textOffsetToPosition(tester, 0)); await tester.tapAt(textOffsetToPosition(tester, 0));
await tester.pump(const Duration(milliseconds: 50)); await tester.pump(const Duration(milliseconds: 50));
await tester.tapAt(textOffsetToPosition(tester, 0)); await tester.tapAt(textOffsetToPosition(tester, 0));
await tester.pumpAndSettle(); await tester.pumpAndSettle();
expect(find.text('PASTE'), findsOneWidget); expect(find.text('Paste'), findsOneWidget);
}, },
); );
...@@ -6079,12 +6079,12 @@ void main() { ...@@ -6079,12 +6079,12 @@ void main() {
// Long press shows the selection menu. // Long press shows the selection menu.
await tester.longPressAt(textOffsetToPosition(tester, 0)); await tester.longPressAt(textOffsetToPosition(tester, 0));
await tester.pumpAndSettle(); await tester.pumpAndSettle();
expect(find.text('PASTE'), findsOneWidget); expect(find.text('Paste'), findsOneWidget);
// Long press again keeps the selection menu visible. // Long press again keeps the selection menu visible.
await tester.longPressAt(textOffsetToPosition(tester, 0)); await tester.longPressAt(textOffsetToPosition(tester, 0));
await tester.pump(); await tester.pump();
expect(find.text('PASTE'), findsOneWidget); expect(find.text('Paste'), findsOneWidget);
}, },
); );
...@@ -6109,12 +6109,12 @@ void main() { ...@@ -6109,12 +6109,12 @@ void main() {
// Long press shows the selection menu. // Long press shows the selection menu.
await tester.longPress(find.byType(TextField)); await tester.longPress(find.byType(TextField));
await tester.pumpAndSettle(); await tester.pumpAndSettle();
expect(find.text('PASTE'), findsOneWidget); expect(find.text('Paste'), findsOneWidget);
// Tap hides the selection menu. // Tap hides the selection menu.
await tester.tap(find.byType(TextField)); await tester.tap(find.byType(TextField));
await tester.pump(); await tester.pump();
expect(find.text('PASTE'), findsNothing); expect(find.text('Paste'), findsNothing);
}, },
); );
...@@ -6141,10 +6141,10 @@ void main() { ...@@ -6141,10 +6141,10 @@ void main() {
await tester.pump(); await tester.pump();
// Long press shows the selection menu. // Long press shows the selection menu.
expect(find.text('PASTE'), findsNothing); expect(find.text('Paste'), findsNothing);
await tester.longPress(find.byType(TextField)); await tester.longPress(find.byType(TextField));
await tester.pumpAndSettle(); await tester.pumpAndSettle();
expect(find.text('PASTE'), findsOneWidget); expect(find.text('Paste'), findsOneWidget);
}, },
); );
......
...@@ -338,8 +338,8 @@ void main() { ...@@ -338,8 +338,8 @@ void main() {
await tester.pump(); await tester.pump();
// Context menu should not have paste. // Context menu should not have paste.
expect(find.text('SELECT ALL'), findsOneWidget); expect(find.text('Select all'), findsOneWidget);
expect(find.text('PASTE'), findsNothing); expect(find.text('Paste'), findsNothing);
final EditableTextState editableTextState = tester.firstState(find.byType(EditableText)); final EditableTextState editableTextState = tester.firstState(find.byType(EditableText));
final RenderEditable renderEditable = editableTextState.renderEditable; final RenderEditable renderEditable = editableTextState.renderEditable;
......
...@@ -113,10 +113,10 @@ void main() { ...@@ -113,10 +113,10 @@ void main() {
)); ));
// Initially, the menu isn't shown at all. // Initially, the menu isn't shown at all.
expect(find.text('CUT'), findsNothing); expect(find.text('Cut'), findsNothing);
expect(find.text('COPY'), findsNothing); expect(find.text('Copy'), findsNothing);
expect(find.text('PASTE'), findsNothing); expect(find.text('Paste'), findsNothing);
expect(find.text('SELECT ALL'), findsNothing); expect(find.text('Select all'), findsNothing);
expect(find.byType(IconButton), findsNothing); expect(find.byType(IconButton), findsNothing);
// Tap to place the cursor in the field, then tap the handle to show the // Tap to place the cursor in the field, then tap the handle to show the
...@@ -132,10 +132,10 @@ void main() { ...@@ -132,10 +132,10 @@ void main() {
final Offset handlePos = endpoints[0].point + const Offset(0.0, 1.0); final Offset handlePos = endpoints[0].point + const Offset(0.0, 1.0);
await tester.tapAt(handlePos, pointer: 7); await tester.tapAt(handlePos, pointer: 7);
await tester.pumpAndSettle(); await tester.pumpAndSettle();
expect(find.text('CUT'), findsNothing); expect(find.text('Cut'), findsNothing);
expect(find.text('COPY'), findsNothing); expect(find.text('Copy'), findsNothing);
expect(find.text('PASTE'), findsOneWidget); expect(find.text('Paste'), findsOneWidget);
expect(find.text('SELECT ALL'), findsOneWidget); expect(find.text('Select all'), findsOneWidget);
expect(find.byType(IconButton), findsNothing); expect(find.byType(IconButton), findsNothing);
// Long press to select a word and show the full selection menu. // Long press to select a word and show the full selection menu.
...@@ -145,10 +145,10 @@ void main() { ...@@ -145,10 +145,10 @@ void main() {
await tester.pump(); await tester.pump();
// The full menu is shown without the more button. // The full menu is shown without the more button.
expect(find.text('CUT'), findsOneWidget); expect(find.text('Cut'), findsOneWidget);
expect(find.text('COPY'), findsOneWidget); expect(find.text('Copy'), findsOneWidget);
expect(find.text('PASTE'), findsOneWidget); expect(find.text('Paste'), findsOneWidget);
expect(find.text('SELECT ALL'), findsOneWidget); expect(find.text('Select all'), findsOneWidget);
expect(find.byType(IconButton), findsNothing); expect(find.byType(IconButton), findsNothing);
}, },
skip: isBrowser, // We do not use Flutter-rendered context menu on the Web skip: isBrowser, // We do not use Flutter-rendered context menu on the Web
...@@ -156,7 +156,7 @@ void main() { ...@@ -156,7 +156,7 @@ void main() {
); );
testWidgets('When menu items don\'t fit, an overflow menu is used.', (WidgetTester tester) async { testWidgets('When menu items don\'t fit, an overflow menu is used.', (WidgetTester tester) async {
// Set the screen size to more narrow, so that SELECT ALL can't fit. // Set the screen size to more narrow, so that Select all can't fit.
tester.binding.window.physicalSizeTestValue = const Size(1000, 800); tester.binding.window.physicalSizeTestValue = const Size(1000, 800);
addTearDown(tester.binding.window.clearPhysicalSizeTestValue); addTearDown(tester.binding.window.clearPhysicalSizeTestValue);
...@@ -179,10 +179,10 @@ void main() { ...@@ -179,10 +179,10 @@ void main() {
)); ));
// Initially, the menu isn't shown at all. // Initially, the menu isn't shown at all.
expect(find.text('CUT'), findsNothing); expect(find.text('Cut'), findsNothing);
expect(find.text('COPY'), findsNothing); expect(find.text('Copy'), findsNothing);
expect(find.text('PASTE'), findsNothing); expect(find.text('Paste'), findsNothing);
expect(find.text('SELECT ALL'), findsNothing); expect(find.text('Select all'), findsNothing);
expect(find.byType(IconButton), findsNothing); expect(find.byType(IconButton), findsNothing);
// Long press to show the menu. // Long press to show the menu.
...@@ -191,24 +191,24 @@ void main() { ...@@ -191,24 +191,24 @@ void main() {
await tester.pumpAndSettle(); await tester.pumpAndSettle();
// The last button is missing, and a more button is shown. // The last button is missing, and a more button is shown.
expect(find.text('CUT'), findsOneWidget); expect(find.text('Cut'), findsOneWidget);
expect(find.text('COPY'), findsOneWidget); expect(find.text('Copy'), findsOneWidget);
expect(find.text('PASTE'), findsOneWidget); expect(find.text('Paste'), findsOneWidget);
expect(find.text('SELECT ALL'), findsNothing); expect(find.text('Select all'), findsNothing);
expect(find.byType(IconButton), findsOneWidget); expect(find.byType(IconButton), findsOneWidget);
final Offset cutOffset = tester.getTopLeft(find.text('CUT')); final Offset cutOffset = tester.getTopLeft(find.text('Cut'));
// Tapping the button shows the overflow menu. // Tapping the button shows the overflow menu.
await tester.tap(find.byType(IconButton)); await tester.tap(find.byType(IconButton));
await tester.pumpAndSettle(); await tester.pumpAndSettle();
expect(find.text('CUT'), findsNothing); expect(find.text('Cut'), findsNothing);
expect(find.text('COPY'), findsNothing); expect(find.text('Copy'), findsNothing);
expect(find.text('PASTE'), findsNothing); expect(find.text('Paste'), findsNothing);
expect(find.text('SELECT ALL'), findsOneWidget); expect(find.text('Select all'), findsOneWidget);
expect(find.byType(IconButton), findsOneWidget); expect(find.byType(IconButton), findsOneWidget);
// The back button is at the bottom of the overflow menu. // The back button is at the bottom of the overflow menu.
final Offset selectAllOffset = tester.getTopLeft(find.text('SELECT ALL')); final Offset selectAllOffset = tester.getTopLeft(find.text('Select all'));
final Offset moreOffset = tester.getTopLeft(find.byType(IconButton)); final Offset moreOffset = tester.getTopLeft(find.byType(IconButton));
expect(moreOffset.dy, greaterThan(selectAllOffset.dy)); expect(moreOffset.dy, greaterThan(selectAllOffset.dy));
...@@ -219,10 +219,10 @@ void main() { ...@@ -219,10 +219,10 @@ void main() {
expect(find.byType(IconButton), findsOneWidget); expect(find.byType(IconButton), findsOneWidget);
await tester.tap(find.byType(IconButton)); await tester.tap(find.byType(IconButton));
await tester.pumpAndSettle(); await tester.pumpAndSettle();
expect(find.text('CUT'), findsOneWidget); expect(find.text('Cut'), findsOneWidget);
expect(find.text('COPY'), findsOneWidget); expect(find.text('Copy'), findsOneWidget);
expect(find.text('PASTE'), findsOneWidget); expect(find.text('Paste'), findsOneWidget);
expect(find.text('SELECT ALL'), findsNothing); expect(find.text('Select all'), findsNothing);
expect(find.byType(IconButton), findsOneWidget); expect(find.byType(IconButton), findsOneWidget);
}, },
skip: isBrowser, // We do not use Flutter-rendered context menu on the Web skip: isBrowser, // We do not use Flutter-rendered context menu on the Web
...@@ -230,7 +230,7 @@ void main() { ...@@ -230,7 +230,7 @@ void main() {
); );
testWidgets('A smaller menu bumps more items to the overflow menu.', (WidgetTester tester) async { testWidgets('A smaller menu bumps more items to the overflow menu.', (WidgetTester tester) async {
// Set the screen size so narrow that only CUT and COPY can fit. // Set the screen size so narrow that only Cut and Copy can fit.
tester.binding.window.physicalSizeTestValue = const Size(800, 800); tester.binding.window.physicalSizeTestValue = const Size(800, 800);
addTearDown(tester.binding.window.clearPhysicalSizeTestValue); addTearDown(tester.binding.window.clearPhysicalSizeTestValue);
...@@ -253,10 +253,10 @@ void main() { ...@@ -253,10 +253,10 @@ void main() {
)); ));
// Initially, the menu isn't shown at all. // Initially, the menu isn't shown at all.
expect(find.text('CUT'), findsNothing); expect(find.text('Cut'), findsNothing);
expect(find.text('COPY'), findsNothing); expect(find.text('Copy'), findsNothing);
expect(find.text('PASTE'), findsNothing); expect(find.text('Paste'), findsNothing);
expect(find.text('SELECT ALL'), findsNothing); expect(find.text('Select all'), findsNothing);
expect(find.byType(IconButton), findsNothing); expect(find.byType(IconButton), findsNothing);
// Long press to show the menu. // Long press to show the menu.
...@@ -265,29 +265,29 @@ void main() { ...@@ -265,29 +265,29 @@ void main() {
await tester.pumpAndSettle(); await tester.pumpAndSettle();
// The last two buttons are missing, and a more button is shown. // The last two buttons are missing, and a more button is shown.
expect(find.text('CUT'), findsOneWidget); expect(find.text('Cut'), findsOneWidget);
expect(find.text('COPY'), findsOneWidget); expect(find.text('Copy'), findsOneWidget);
expect(find.text('PASTE'), findsNothing); expect(find.text('Paste'), findsNothing);
expect(find.text('SELECT ALL'), findsNothing); expect(find.text('Select all'), findsNothing);
expect(find.byType(IconButton), findsOneWidget); expect(find.byType(IconButton), findsOneWidget);
// Tapping the button shows the overflow menu, which contains both buttons // Tapping the button shows the overflow menu, which contains both buttons
// missing from the main menu, and a back button. // missing from the main menu, and a back button.
await tester.tap(find.byType(IconButton)); await tester.tap(find.byType(IconButton));
await tester.pumpAndSettle(); await tester.pumpAndSettle();
expect(find.text('CUT'), findsNothing); expect(find.text('Cut'), findsNothing);
expect(find.text('COPY'), findsNothing); expect(find.text('Copy'), findsNothing);
expect(find.text('PASTE'), findsOneWidget); expect(find.text('Paste'), findsOneWidget);
expect(find.text('SELECT ALL'), findsOneWidget); expect(find.text('Select all'), findsOneWidget);
expect(find.byType(IconButton), findsOneWidget); expect(find.byType(IconButton), findsOneWidget);
// Tapping the back button shows the selection menu again. // Tapping the back button shows the selection menu again.
await tester.tap(find.byType(IconButton)); await tester.tap(find.byType(IconButton));
await tester.pumpAndSettle(); await tester.pumpAndSettle();
expect(find.text('CUT'), findsOneWidget); expect(find.text('Cut'), findsOneWidget);
expect(find.text('COPY'), findsOneWidget); expect(find.text('Copy'), findsOneWidget);
expect(find.text('PASTE'), findsNothing); expect(find.text('Paste'), findsNothing);
expect(find.text('SELECT ALL'), findsNothing); expect(find.text('Select all'), findsNothing);
expect(find.byType(IconButton), findsOneWidget); expect(find.byType(IconButton), findsOneWidget);
}, },
skip: isBrowser, // We do not use Flutter-rendered context menu on the Web skip: isBrowser, // We do not use Flutter-rendered context menu on the Web
...@@ -295,7 +295,7 @@ void main() { ...@@ -295,7 +295,7 @@ void main() {
); );
testWidgets('When the menu renders below the text, the overflow menu back button is at the top.', (WidgetTester tester) async { testWidgets('When the menu renders below the text, the overflow menu back button is at the top.', (WidgetTester tester) async {
// Set the screen size to more narrow, so that SELECT ALL can't fit. // Set the screen size to more narrow, so that Select all can't fit.
tester.binding.window.physicalSizeTestValue = const Size(1000, 800); tester.binding.window.physicalSizeTestValue = const Size(1000, 800);
addTearDown(tester.binding.window.clearPhysicalSizeTestValue); addTearDown(tester.binding.window.clearPhysicalSizeTestValue);
...@@ -319,10 +319,10 @@ void main() { ...@@ -319,10 +319,10 @@ void main() {
)); ));
// Initially, the menu isn't shown at all. // Initially, the menu isn't shown at all.
expect(find.text('CUT'), findsNothing); expect(find.text('Cut'), findsNothing);
expect(find.text('COPY'), findsNothing); expect(find.text('Copy'), findsNothing);
expect(find.text('PASTE'), findsNothing); expect(find.text('Paste'), findsNothing);
expect(find.text('SELECT ALL'), findsNothing); expect(find.text('Select all'), findsNothing);
expect(find.byType(IconButton), findsNothing); expect(find.byType(IconButton), findsNothing);
// Long press to show the menu. // Long press to show the menu.
...@@ -331,24 +331,24 @@ void main() { ...@@ -331,24 +331,24 @@ void main() {
await tester.pumpAndSettle(); await tester.pumpAndSettle();
// The last button is missing, and a more button is shown. // The last button is missing, and a more button is shown.
expect(find.text('CUT'), findsOneWidget); expect(find.text('Cut'), findsOneWidget);
expect(find.text('COPY'), findsOneWidget); expect(find.text('Copy'), findsOneWidget);
expect(find.text('PASTE'), findsOneWidget); expect(find.text('Paste'), findsOneWidget);
expect(find.text('SELECT ALL'), findsNothing); expect(find.text('Select all'), findsNothing);
expect(find.byType(IconButton), findsOneWidget); expect(find.byType(IconButton), findsOneWidget);
final Offset cutOffset = tester.getTopLeft(find.text('CUT')); final Offset cutOffset = tester.getTopLeft(find.text('Cut'));
// Tapping the button shows the overflow menu. // Tapping the button shows the overflow menu.
await tester.tap(find.byType(IconButton)); await tester.tap(find.byType(IconButton));
await tester.pumpAndSettle(); await tester.pumpAndSettle();
expect(find.text('CUT'), findsNothing); expect(find.text('Cut'), findsNothing);
expect(find.text('COPY'), findsNothing); expect(find.text('Copy'), findsNothing);
expect(find.text('PASTE'), findsNothing); expect(find.text('Paste'), findsNothing);
expect(find.text('SELECT ALL'), findsOneWidget); expect(find.text('Select all'), findsOneWidget);
expect(find.byType(IconButton), findsOneWidget); expect(find.byType(IconButton), findsOneWidget);
// The back button is at the top of the overflow menu. // The back button is at the top of the overflow menu.
final Offset selectAllOffset = tester.getTopLeft(find.text('SELECT ALL')); final Offset selectAllOffset = tester.getTopLeft(find.text('Select all'));
final Offset moreOffset = tester.getTopLeft(find.byType(IconButton)); final Offset moreOffset = tester.getTopLeft(find.byType(IconButton));
expect(moreOffset.dy, lessThan(selectAllOffset.dy)); expect(moreOffset.dy, lessThan(selectAllOffset.dy));
...@@ -358,10 +358,10 @@ void main() { ...@@ -358,10 +358,10 @@ void main() {
// Tapping the back button shows the selection menu again. // Tapping the back button shows the selection menu again.
await tester.tap(find.byType(IconButton)); await tester.tap(find.byType(IconButton));
await tester.pumpAndSettle(); await tester.pumpAndSettle();
expect(find.text('CUT'), findsOneWidget); expect(find.text('Cut'), findsOneWidget);
expect(find.text('COPY'), findsOneWidget); expect(find.text('Copy'), findsOneWidget);
expect(find.text('PASTE'), findsOneWidget); expect(find.text('Paste'), findsOneWidget);
expect(find.text('SELECT ALL'), findsNothing); expect(find.text('Select all'), findsNothing);
expect(find.byType(IconButton), findsOneWidget); expect(find.byType(IconButton), findsOneWidget);
}, },
skip: isBrowser, // We do not use Flutter-rendered context menu on the Web skip: isBrowser, // We do not use Flutter-rendered context menu on the Web
...@@ -369,7 +369,7 @@ void main() { ...@@ -369,7 +369,7 @@ void main() {
); );
testWidgets('When the menu items change, the menu is closed and _closedWidth reset.', (WidgetTester tester) async { testWidgets('When the menu items change, the menu is closed and _closedWidth reset.', (WidgetTester tester) async {
// Set the screen size to more narrow, so that SELECT ALL can't fit. // Set the screen size to more narrow, so that Select all can't fit.
tester.binding.window.physicalSizeTestValue = const Size(1000, 800); tester.binding.window.physicalSizeTestValue = const Size(1000, 800);
addTearDown(tester.binding.window.clearPhysicalSizeTestValue); addTearDown(tester.binding.window.clearPhysicalSizeTestValue);
...@@ -393,10 +393,10 @@ void main() { ...@@ -393,10 +393,10 @@ void main() {
)); ));
// Initially, the menu isn't shown at all. // Initially, the menu isn't shown at all.
expect(find.text('CUT'), findsNothing); expect(find.text('Cut'), findsNothing);
expect(find.text('COPY'), findsNothing); expect(find.text('Copy'), findsNothing);
expect(find.text('PASTE'), findsNothing); expect(find.text('Paste'), findsNothing);
expect(find.text('SELECT ALL'), findsNothing); expect(find.text('Select all'), findsNothing);
expect(find.byType(IconButton), findsNothing); expect(find.byType(IconButton), findsNothing);
// Tap to place the cursor and tap again to show the menu without a // Tap to place the cursor and tap again to show the menu without a
...@@ -412,30 +412,30 @@ void main() { ...@@ -412,30 +412,30 @@ void main() {
final Offset handlePos = endpoints[0].point + const Offset(0.0, 1.0); final Offset handlePos = endpoints[0].point + const Offset(0.0, 1.0);
await tester.tapAt(handlePos, pointer: 7); await tester.tapAt(handlePos, pointer: 7);
await tester.pumpAndSettle(); await tester.pumpAndSettle();
expect(find.text('CUT'), findsNothing); expect(find.text('Cut'), findsNothing);
expect(find.text('COPY'), findsNothing); expect(find.text('Copy'), findsNothing);
expect(find.text('PASTE'), findsOneWidget); expect(find.text('Paste'), findsOneWidget);
expect(find.text('SELECT ALL'), findsOneWidget); expect(find.text('Select all'), findsOneWidget);
expect(find.byType(IconButton), findsNothing); expect(find.byType(IconButton), findsNothing);
// Tap SELECT ALL and measure the usual position of CUT, without // Tap Select all and measure the usual position of Cut, without
// _closedWidth having been used yet. // _closedWidth having been used yet.
await tester.tap(find.text('SELECT ALL')); await tester.tap(find.text('Select all'));
await tester.pumpAndSettle(); await tester.pumpAndSettle();
expect(find.text('CUT'), findsOneWidget); expect(find.text('Cut'), findsOneWidget);
expect(find.text('COPY'), findsOneWidget); expect(find.text('Copy'), findsOneWidget);
expect(find.text('PASTE'), findsOneWidget); expect(find.text('Paste'), findsOneWidget);
expect(find.text('SELECT ALL'), findsNothing); expect(find.text('Select all'), findsNothing);
expect(find.byType(IconButton), findsNothing); expect(find.byType(IconButton), findsNothing);
final Offset cutOffset = tester.getTopLeft(find.text('CUT')); final Offset cutOffset = tester.getTopLeft(find.text('Cut'));
// Tap to clear the selection. // Tap to clear the selection.
await tester.tapAt(textOffsetToPosition(tester, 0)); await tester.tapAt(textOffsetToPosition(tester, 0));
await tester.pumpAndSettle(); await tester.pumpAndSettle();
expect(find.text('CUT'), findsNothing); expect(find.text('Cut'), findsNothing);
expect(find.text('COPY'), findsNothing); expect(find.text('Copy'), findsNothing);
expect(find.text('PASTE'), findsNothing); expect(find.text('Paste'), findsNothing);
expect(find.text('SELECT ALL'), findsNothing); expect(find.text('Select all'), findsNothing);
expect(find.byType(IconButton), findsNothing); expect(find.byType(IconButton), findsNothing);
// Long press to show the menu. // Long press to show the menu.
...@@ -443,31 +443,31 @@ void main() { ...@@ -443,31 +443,31 @@ void main() {
await tester.pumpAndSettle(); await tester.pumpAndSettle();
// The last button is missing, and a more button is shown. // The last button is missing, and a more button is shown.
expect(find.text('CUT'), findsOneWidget); expect(find.text('Cut'), findsOneWidget);
expect(find.text('COPY'), findsOneWidget); expect(find.text('Copy'), findsOneWidget);
expect(find.text('PASTE'), findsOneWidget); expect(find.text('Paste'), findsOneWidget);
expect(find.text('SELECT ALL'), findsNothing); expect(find.text('Select all'), findsNothing);
expect(find.byType(IconButton), findsOneWidget); expect(find.byType(IconButton), findsOneWidget);
// Tapping the button shows the overflow menu. // Tapping the button shows the overflow menu.
await tester.tap(find.byType(IconButton)); await tester.tap(find.byType(IconButton));
await tester.pumpAndSettle(); await tester.pumpAndSettle();
expect(find.text('CUT'), findsNothing); expect(find.text('Cut'), findsNothing);
expect(find.text('COPY'), findsNothing); expect(find.text('Copy'), findsNothing);
expect(find.text('PASTE'), findsNothing); expect(find.text('Paste'), findsNothing);
expect(find.text('SELECT ALL'), findsOneWidget); expect(find.text('Select all'), findsOneWidget);
expect(find.byType(IconButton), findsOneWidget); expect(find.byType(IconButton), findsOneWidget);
// Tapping SELECT ALL changes the menu items so that there is no no longer // Tapping Select all changes the menu items so that there is no no longer
// any overflow. // any overflow.
await tester.tap(find.text('SELECT ALL')); await tester.tap(find.text('Select all'));
await tester.pumpAndSettle(); await tester.pumpAndSettle();
expect(find.text('CUT'), findsOneWidget); expect(find.text('Cut'), findsOneWidget);
expect(find.text('COPY'), findsOneWidget); expect(find.text('Copy'), findsOneWidget);
expect(find.text('PASTE'), findsOneWidget); expect(find.text('Paste'), findsOneWidget);
expect(find.text('SELECT ALL'), findsNothing); expect(find.text('Select all'), findsNothing);
expect(find.byType(IconButton), findsNothing); expect(find.byType(IconButton), findsNothing);
final Offset newCutOffset = tester.getTopLeft(find.text('CUT')); final Offset newCutOffset = tester.getTopLeft(find.text('Cut'));
expect(newCutOffset, equals(cutOffset)); expect(newCutOffset, equals(cutOffset));
}, },
skip: isBrowser, // We do not use Flutter-rendered context menu on the Web skip: isBrowser, // We do not use Flutter-rendered context menu on the Web
...@@ -497,10 +497,10 @@ void main() { ...@@ -497,10 +497,10 @@ void main() {
)); ));
// Initially, the menu isn't shown at all. // Initially, the menu isn't shown at all.
expect(find.text('CUT'), findsNothing); expect(find.text('Cut'), findsNothing);
expect(find.text('COPY'), findsNothing); expect(find.text('Copy'), findsNothing);
expect(find.text('PASTE'), findsNothing); expect(find.text('Paste'), findsNothing);
expect(find.text('SELECT ALL'), findsNothing); expect(find.text('Select all'), findsNothing);
expect(find.byType(IconButton), findsNothing); expect(find.byType(IconButton), findsNothing);
// Tap to place the cursor in the field, then tap the handle to show the // Tap to place the cursor in the field, then tap the handle to show the
...@@ -516,21 +516,21 @@ void main() { ...@@ -516,21 +516,21 @@ void main() {
final Offset handlePos = endpoints[0].point + const Offset(0.0, 1.0); final Offset handlePos = endpoints[0].point + const Offset(0.0, 1.0);
await tester.tapAt(handlePos, pointer: 7); await tester.tapAt(handlePos, pointer: 7);
await tester.pumpAndSettle(); await tester.pumpAndSettle();
expect(find.text('CUT'), findsNothing); expect(find.text('Cut'), findsNothing);
expect(find.text('COPY'), findsNothing); expect(find.text('Copy'), findsNothing);
expect(find.text('PASTE'), findsOneWidget); expect(find.text('Paste'), findsOneWidget);
expect(find.text('SELECT ALL'), findsOneWidget); expect(find.text('Select all'), findsOneWidget);
expect(find.byType(IconButton), findsNothing); expect(find.byType(IconButton), findsNothing);
// Tap to select all. // Tap to select all.
await tester.tap(find.text('SELECT ALL')); await tester.tap(find.text('Select all'));
await tester.pumpAndSettle(); await tester.pumpAndSettle();
// Only CUT, COPY, and PASTE are shown. // Only Cut, Copy, and Paste are shown.
expect(find.text('CUT'), findsOneWidget); expect(find.text('Cut'), findsOneWidget);
expect(find.text('COPY'), findsOneWidget); expect(find.text('Copy'), findsOneWidget);
expect(find.text('PASTE'), findsOneWidget); expect(find.text('Paste'), findsOneWidget);
expect(find.text('SELECT ALL'), findsNothing); expect(find.text('Select all'), findsNothing);
expect(find.byType(IconButton), findsNothing); expect(find.byType(IconButton), findsNothing);
// The menu appears below the bottom handle. // The menu appears below the bottom handle.
...@@ -541,7 +541,7 @@ void main() { ...@@ -541,7 +541,7 @@ void main() {
); );
expect(endpoints.length, 2); expect(endpoints.length, 2);
final Offset bottomHandlePos = endpoints[1].point; final Offset bottomHandlePos = endpoints[1].point;
final Offset cutOffset = tester.getTopLeft(find.text('CUT')); final Offset cutOffset = tester.getTopLeft(find.text('Cut'));
expect(cutOffset.dy, greaterThan(bottomHandlePos.dy)); expect(cutOffset.dy, greaterThan(bottomHandlePos.dy));
}, },
skip: isBrowser, // We do not use Flutter-rendered context menu on the Web skip: isBrowser, // We do not use Flutter-rendered context menu on the Web
...@@ -613,17 +613,17 @@ void main() { ...@@ -613,17 +613,17 @@ void main() {
await tester.pumpAndSettle(); await tester.pumpAndSettle();
// No Paste yet, because nothing has been copied. // No Paste yet, because nothing has been copied.
expect(find.text('PASTE'), findsNothing); expect(find.text('Paste'), findsNothing);
expect(find.text('COPY'), findsOneWidget); expect(find.text('Copy'), findsOneWidget);
expect(find.text('CUT'), findsOneWidget); expect(find.text('Cut'), findsOneWidget);
expect(find.text('SELECT ALL'), findsOneWidget); expect(find.text('Select all'), findsOneWidget);
// Tap copy to add something to the clipboard and close the menu. // Tap copy to add something to the clipboard and close the menu.
await tester.tapAt(tester.getCenter(find.text('COPY'))); await tester.tapAt(tester.getCenter(find.text('Copy')));
await tester.pumpAndSettle(); await tester.pumpAndSettle();
expect(find.text('COPY'), findsNothing); expect(find.text('Copy'), findsNothing);
expect(find.text('CUT'), findsNothing); expect(find.text('Cut'), findsNothing);
expect(find.text('SELECT ALL'), findsNothing); expect(find.text('Select all'), findsNothing);
// Double tap to show the menu again. // Double tap to show the menu again.
await tester.tapAt(textOffsetToPosition(tester, index)); await tester.tapAt(textOffsetToPosition(tester, index));
...@@ -632,9 +632,9 @@ void main() { ...@@ -632,9 +632,9 @@ void main() {
await tester.pumpAndSettle(); await tester.pumpAndSettle();
// Paste now shows. // Paste now shows.
expect(find.text('COPY'), findsOneWidget); expect(find.text('Copy'), findsOneWidget);
expect(find.text('CUT'), findsOneWidget); expect(find.text('Cut'), findsOneWidget);
expect(find.text('PASTE'), findsOneWidget); expect(find.text('Paste'), findsOneWidget);
expect(find.text('SELECT ALL'), findsOneWidget); expect(find.text('Select all'), findsOneWidget);
}, skip: isBrowser); }, skip: isBrowser);
} }
...@@ -22,7 +22,7 @@ const Color cursorColor = Color.fromARGB(0xFF, 0xFF, 0x00, 0x00); ...@@ -22,7 +22,7 @@ const Color cursorColor = Color.fromARGB(0xFF, 0xFF, 0x00, 0x00);
void main() { void main() {
setUp(() async { setUp(() async {
// Fill the clipboard so that the PASTE option is available in the text // Fill the clipboard so that the Paste option is available in the text
// selection menu. // selection menu.
await Clipboard.setData(const ClipboardData(text: 'Clipboard data')); await Clipboard.setData(const ClipboardData(text: 'Clipboard data'));
}); });
...@@ -88,7 +88,7 @@ void main() { ...@@ -88,7 +88,7 @@ void main() {
await tester.pump(const Duration(milliseconds: 500)); await tester.pump(const Duration(milliseconds: 500));
await tester.pump(const Duration(milliseconds: 500)); await tester.pump(const Duration(milliseconds: 500));
await tester.tap(find.text('PASTE')); await tester.tap(find.text('Paste'));
await tester.pump(); await tester.pump();
await tester.pump(const Duration(milliseconds: 500)); await tester.pump(const Duration(milliseconds: 500));
await tester.pump(const Duration(milliseconds: 500)); await tester.pump(const Duration(milliseconds: 500));
...@@ -141,7 +141,7 @@ void main() { ...@@ -141,7 +141,7 @@ void main() {
tester.state<EditableTextState>(textFinder).showToolbar(); tester.state<EditableTextState>(textFinder).showToolbar();
await tester.pumpAndSettle(); await tester.pumpAndSettle();
await tester.tap(find.text('PASTE')); await tester.tap(find.text('Paste'));
await tester.pump(); await tester.pump();
expect(changedValue, clipboardContent); expect(changedValue, clipboardContent);
...@@ -779,7 +779,7 @@ void main() { ...@@ -779,7 +779,7 @@ void main() {
await tester.pump(const Duration(milliseconds: 500)); await tester.pump(const Duration(milliseconds: 500));
await tester.pump(const Duration(milliseconds: 500)); await tester.pump(const Duration(milliseconds: 500));
await tester.tap(find.text('PASTE')); await tester.tap(find.text('Paste'));
await tester.pump(); await tester.pump();
await tester.pump(const Duration(milliseconds: 500)); await tester.pump(const Duration(milliseconds: 500));
await tester.pump(const Duration(milliseconds: 500)); await tester.pump(const Duration(milliseconds: 500));
......
...@@ -54,7 +54,7 @@ void main() { ...@@ -54,7 +54,7 @@ void main() {
setUp(() async { setUp(() async {
debugResetSemanticsIdCounter(); debugResetSemanticsIdCounter();
controller = TextEditingController(); controller = TextEditingController();
// Fill the clipboard so that the PASTE option is available in the text // Fill the clipboard so that the Paste option is available in the text
// selection menu. // selection menu.
await Clipboard.setData(const ClipboardData(text: 'Clipboard data')); await Clipboard.setData(const ClipboardData(text: 'Clipboard data'));
}); });
...@@ -1096,7 +1096,7 @@ void main() { ...@@ -1096,7 +1096,7 @@ void main() {
// Can't show the toolbar when there's no focus. // Can't show the toolbar when there's no focus.
expect(state.showToolbar(), false); expect(state.showToolbar(), false);
await tester.pumpAndSettle(); await tester.pumpAndSettle();
expect(find.text('PASTE'), findsNothing); expect(find.text('Paste'), findsNothing);
// Can show the toolbar when focused even though there's no text. // Can show the toolbar when focused even though there's no text.
state.renderEditable.selectWordsInRange( state.renderEditable.selectWordsInRange(
...@@ -1106,19 +1106,19 @@ void main() { ...@@ -1106,19 +1106,19 @@ void main() {
await tester.pump(); await tester.pump();
expect(state.showToolbar(), true); expect(state.showToolbar(), true);
await tester.pumpAndSettle(); await tester.pumpAndSettle();
expect(find.text('PASTE'), findsOneWidget); expect(find.text('Paste'), findsOneWidget);
// Hide the menu again. // Hide the menu again.
state.hideToolbar(); state.hideToolbar();
await tester.pump(); await tester.pump();
expect(find.text('PASTE'), findsNothing); expect(find.text('Paste'), findsNothing);
// Can show the menu with text and a selection. // Can show the menu with text and a selection.
controller.text = 'blah'; controller.text = 'blah';
await tester.pump(); await tester.pump();
expect(state.showToolbar(), true); expect(state.showToolbar(), true);
await tester.pumpAndSettle(); await tester.pumpAndSettle();
expect(find.text('PASTE'), findsOneWidget); expect(find.text('Paste'), findsOneWidget);
}, skip: isBrowser); }, skip: isBrowser);
testWidgets('can show the toolbar after clearing all text', (WidgetTester tester) async { testWidgets('can show the toolbar after clearing all text', (WidgetTester tester) async {
...@@ -1149,7 +1149,7 @@ void main() { ...@@ -1149,7 +1149,7 @@ void main() {
await tester.pump(); await tester.pump();
// Clear the text and selection. // Clear the text and selection.
expect(find.text('PASTE'), findsNothing); expect(find.text('Paste'), findsNothing);
state.updateEditingValue(const TextEditingValue( state.updateEditingValue(const TextEditingValue(
text: '', text: '',
)); ));
...@@ -1158,7 +1158,7 @@ void main() { ...@@ -1158,7 +1158,7 @@ void main() {
// Should be able to show the toolbar. // Should be able to show the toolbar.
expect(state.showToolbar(), true); expect(state.showToolbar(), true);
await tester.pumpAndSettle(); await tester.pumpAndSettle();
expect(find.text('PASTE'), findsOneWidget); expect(find.text('Paste'), findsOneWidget);
}); });
testWidgets('can dynamically disable options in toolbar', (WidgetTester tester) async { testWidgets('can dynamically disable options in toolbar', (WidgetTester tester) async {
...@@ -1190,10 +1190,10 @@ void main() { ...@@ -1190,10 +1190,10 @@ void main() {
await tester.pump(); await tester.pump();
expect(state.showToolbar(), true); expect(state.showToolbar(), true);
await tester.pump(); await tester.pump();
expect(find.text('SELECT ALL'), findsOneWidget); expect(find.text('Select all'), findsOneWidget);
expect(find.text('COPY'), findsOneWidget); expect(find.text('Copy'), findsOneWidget);
expect(find.text('PASTE'), findsNothing); expect(find.text('Paste'), findsNothing);
expect(find.text('CUT'), findsNothing); expect(find.text('Cut'), findsNothing);
}); });
testWidgets('can dynamically disable select all option in toolbar - cupertino', (WidgetTester tester) async { testWidgets('can dynamically disable select all option in toolbar - cupertino', (WidgetTester tester) async {
...@@ -1256,10 +1256,10 @@ void main() { ...@@ -1256,10 +1256,10 @@ void main() {
await tester.pump(); await tester.pump();
expect(state.showToolbar(), true); expect(state.showToolbar(), true);
await tester.pump(); await tester.pump();
expect(find.text('SELECT ALL'), findsNothing); expect(find.text('Select all'), findsNothing);
expect(find.text('COPY'), findsOneWidget); expect(find.text('Copy'), findsOneWidget);
expect(find.text('PASTE'), findsNothing); expect(find.text('Paste'), findsNothing);
expect(find.text('CUT'), findsNothing); expect(find.text('Cut'), findsNothing);
}); });
testWidgets('cut and paste are disabled in read only mode even if explicit set', (WidgetTester tester) async { testWidgets('cut and paste are disabled in read only mode even if explicit set', (WidgetTester tester) async {
...@@ -1294,10 +1294,10 @@ void main() { ...@@ -1294,10 +1294,10 @@ void main() {
await tester.pump(); await tester.pump();
expect(state.showToolbar(), true); expect(state.showToolbar(), true);
await tester.pump(); await tester.pump();
expect(find.text('SELECT ALL'), findsOneWidget); expect(find.text('Select all'), findsOneWidget);
expect(find.text('COPY'), findsOneWidget); expect(find.text('Copy'), findsOneWidget);
expect(find.text('PASTE'), findsNothing); expect(find.text('Paste'), findsNothing);
expect(find.text('CUT'), findsNothing); expect(find.text('Cut'), findsNothing);
}); });
testWidgets('Fires onChanged when text changes via TextSelectionOverlay', (WidgetTester tester) async { testWidgets('Fires onChanged when text changes via TextSelectionOverlay', (WidgetTester tester) async {
...@@ -1328,7 +1328,7 @@ void main() { ...@@ -1328,7 +1328,7 @@ void main() {
tester.state<EditableTextState>(textFinder).showToolbar(); tester.state<EditableTextState>(textFinder).showToolbar();
await tester.pumpAndSettle(); await tester.pumpAndSettle();
await tester.tap(find.text('PASTE')); await tester.tap(find.text('Paste'));
await tester.pump(); await tester.pump();
expect(changedValue, clipboardContent); expect(changedValue, clipboardContent);
......
...@@ -456,7 +456,7 @@ void main() { ...@@ -456,7 +456,7 @@ void main() {
await tester.pumpAndSettle(); await tester.pumpAndSettle();
await tester.pump(const Duration(seconds: 1)); await tester.pump(const Duration(seconds: 1));
expect(find.text('SELECT ALL'), findsOneWidget); expect(find.text('Select all'), findsOneWidget);
}); });
testWidgets('Caret position is updated on tap', (WidgetTester tester) async { testWidgets('Caret position is updated on tap', (WidgetTester tester) async {
...@@ -633,9 +633,9 @@ void main() { ...@@ -633,9 +633,9 @@ void main() {
await tester.pump(); await tester.pump();
// Context menu should not have paste and cut. // Context menu should not have paste and cut.
expect(find.text('COPY'), findsOneWidget); expect(find.text('Copy'), findsOneWidget);
expect(find.text('PASTE'), findsNothing); expect(find.text('Paste'), findsNothing);
expect(find.text('CUT'), findsNothing); expect(find.text('Cut'), findsNothing);
}); });
testWidgets('selectable text can disable toolbar options', (WidgetTester tester) async { testWidgets('selectable text can disable toolbar options', (WidgetTester tester) async {
...@@ -655,8 +655,8 @@ void main() { ...@@ -655,8 +655,8 @@ void main() {
await tester.longPressAt(dPos); await tester.longPressAt(dPos);
await tester.pump(); await tester.pump();
// Context menu should not have copy. // Context menu should not have copy.
expect(find.text('COPY'), findsNothing); expect(find.text('Copy'), findsNothing);
expect(find.text('SELECT ALL'), findsOneWidget); expect(find.text('Select all'), findsOneWidget);
}); });
testWidgets('Can select text by dragging with a mouse', (WidgetTester tester) async { testWidgets('Can select text by dragging with a mouse', (WidgetTester tester) async {
...@@ -948,14 +948,14 @@ void main() { ...@@ -948,14 +948,14 @@ void main() {
await tester.pump(); await tester.pump();
await tester.pump(const Duration(milliseconds: 200)); // skip past the frame where the opacity is zero await tester.pump(const Duration(milliseconds: 200)); // skip past the frame where the opacity is zero
// SELECT ALL should select all the text. // Select all should select all the text.
await tester.tap(find.text('SELECT ALL')); await tester.tap(find.text('Select all'));
await tester.pump(); await tester.pump();
expect(controller.selection.baseOffset, 0); expect(controller.selection.baseOffset, 0);
expect(controller.selection.extentOffset, testValue.length); expect(controller.selection.extentOffset, testValue.length);
// COPY should reset the selection. // Copy should reset the selection.
await tester.tap(find.text('COPY')); await tester.tap(find.text('Copy'));
await skipPastScrollingAnimation(tester); await skipPastScrollingAnimation(tester);
expect(controller.selection.isCollapsed, true); expect(controller.selection.isCollapsed, true);
}); });
...@@ -1086,7 +1086,7 @@ void main() { ...@@ -1086,7 +1086,7 @@ void main() {
expect(controller.selection.baseOffset, 5); expect(controller.selection.baseOffset, 5);
expect(controller.selection.extentOffset, 50); expect(controller.selection.extentOffset, 50);
await tester.tap(find.text('COPY')); await tester.tap(find.text('Copy'));
await tester.pump(); await tester.pump();
expect(controller.selection.isCollapsed, true); expect(controller.selection.isCollapsed, true);
}); });
......
...@@ -3855,10 +3855,10 @@ class MaterialLocalizationEn extends GlobalMaterialLocalizations { ...@@ -3855,10 +3855,10 @@ class MaterialLocalizationEn extends GlobalMaterialLocalizations {
String get continueButtonLabel => 'CONTINUE'; String get continueButtonLabel => 'CONTINUE';
@override @override
String get copyButtonLabel => 'COPY'; String get copyButtonLabel => 'Copy';
@override @override
String get cutButtonLabel => 'CUT'; String get cutButtonLabel => 'Cut';
@override @override
String get dateHelpText => 'mm/dd/yyyy'; String get dateHelpText => 'mm/dd/yyyy';
...@@ -3942,7 +3942,7 @@ class MaterialLocalizationEn extends GlobalMaterialLocalizations { ...@@ -3942,7 +3942,7 @@ class MaterialLocalizationEn extends GlobalMaterialLocalizations {
String get pageRowsInfoTitleApproximateRaw => '\$firstRow\$lastRow of about \$rowCount'; String get pageRowsInfoTitleApproximateRaw => '\$firstRow\$lastRow of about \$rowCount';
@override @override
String get pasteButtonLabel => 'PASTE'; String get pasteButtonLabel => 'Paste';
@override @override
String get popupMenuLabel => 'Popup menu'; String get popupMenuLabel => 'Popup menu';
...@@ -4008,7 +4008,7 @@ class MaterialLocalizationEn extends GlobalMaterialLocalizations { ...@@ -4008,7 +4008,7 @@ class MaterialLocalizationEn extends GlobalMaterialLocalizations {
String get searchFieldLabel => 'Search'; String get searchFieldLabel => 'Search';
@override @override
String get selectAllButtonLabel => 'SELECT ALL'; String get selectAllButtonLabel => 'Select all';
@override @override
String get selectYearSemanticsLabel => 'Select year'; String get selectYearSemanticsLabel => 'Select year';
...@@ -4094,6 +4094,18 @@ class MaterialLocalizationEnAu extends MaterialLocalizationEn { ...@@ -4094,6 +4094,18 @@ class MaterialLocalizationEnAu extends MaterialLocalizationEn {
@override @override
String get licensesPageTitle => 'Licences'; String get licensesPageTitle => 'Licences';
@override
String get copyButtonLabel => 'COPY';
@override
String get cutButtonLabel => 'CUT';
@override
String get pasteButtonLabel => 'PASTE';
@override
String get selectAllButtonLabel => 'SELECT ALL';
@override @override
String get viewLicensesButtonLabel => 'VIEW LICENCES'; String get viewLicensesButtonLabel => 'VIEW LICENCES';
...@@ -4142,6 +4154,18 @@ class MaterialLocalizationEnCa extends MaterialLocalizationEn { ...@@ -4142,6 +4154,18 @@ class MaterialLocalizationEnCa extends MaterialLocalizationEn {
@override @override
String get licensesPageTitle => 'Licences'; String get licensesPageTitle => 'Licences';
@override
String get copyButtonLabel => 'COPY';
@override
String get cutButtonLabel => 'CUT';
@override
String get pasteButtonLabel => 'PASTE';
@override
String get selectAllButtonLabel => 'SELECT ALL';
@override @override
String get viewLicensesButtonLabel => 'VIEW LICENCES'; String get viewLicensesButtonLabel => 'VIEW LICENCES';
...@@ -4190,12 +4214,24 @@ class MaterialLocalizationEnGb extends MaterialLocalizationEn { ...@@ -4190,12 +4214,24 @@ class MaterialLocalizationEnGb extends MaterialLocalizationEn {
@override @override
TimeOfDayFormat get timeOfDayFormatRaw => TimeOfDayFormat.HH_colon_mm; TimeOfDayFormat get timeOfDayFormatRaw => TimeOfDayFormat.HH_colon_mm;
@override
String get copyButtonLabel => 'COPY';
@override
String get selectAllButtonLabel => 'SELECT ALL';
@override @override
String get viewLicensesButtonLabel => 'VIEW LICENCES'; String get viewLicensesButtonLabel => 'VIEW LICENCES';
@override @override
String get licensesPageTitle => 'Licences'; String get licensesPageTitle => 'Licences';
@override
String get pasteButtonLabel => 'PASTE';
@override
String get cutButtonLabel => 'CUT';
@override @override
String get popupMenuLabel => 'Pop-up menu'; String get popupMenuLabel => 'Pop-up menu';
...@@ -4241,12 +4277,24 @@ class MaterialLocalizationEnIe extends MaterialLocalizationEn { ...@@ -4241,12 +4277,24 @@ class MaterialLocalizationEnIe extends MaterialLocalizationEn {
@override @override
TimeOfDayFormat get timeOfDayFormatRaw => TimeOfDayFormat.HH_colon_mm; TimeOfDayFormat get timeOfDayFormatRaw => TimeOfDayFormat.HH_colon_mm;
@override
String get copyButtonLabel => 'COPY';
@override
String get selectAllButtonLabel => 'SELECT ALL';
@override @override
String get viewLicensesButtonLabel => 'VIEW LICENCES'; String get viewLicensesButtonLabel => 'VIEW LICENCES';
@override @override
String get licensesPageTitle => 'Licences'; String get licensesPageTitle => 'Licences';
@override
String get pasteButtonLabel => 'PASTE';
@override
String get cutButtonLabel => 'CUT';
@override @override
String get popupMenuLabel => 'Pop-up menu'; String get popupMenuLabel => 'Pop-up menu';
...@@ -4292,6 +4340,18 @@ class MaterialLocalizationEnIn extends MaterialLocalizationEn { ...@@ -4292,6 +4340,18 @@ class MaterialLocalizationEnIn extends MaterialLocalizationEn {
@override @override
String get licensesPageTitle => 'Licences'; String get licensesPageTitle => 'Licences';
@override
String get copyButtonLabel => 'COPY';
@override
String get cutButtonLabel => 'CUT';
@override
String get pasteButtonLabel => 'PASTE';
@override
String get selectAllButtonLabel => 'SELECT ALL';
@override @override
String get viewLicensesButtonLabel => 'VIEW LICENCES'; String get viewLicensesButtonLabel => 'VIEW LICENCES';
...@@ -4340,6 +4400,18 @@ class MaterialLocalizationEnNz extends MaterialLocalizationEn { ...@@ -4340,6 +4400,18 @@ class MaterialLocalizationEnNz extends MaterialLocalizationEn {
@override @override
String get licensesPageTitle => 'Licences'; String get licensesPageTitle => 'Licences';
@override
String get copyButtonLabel => 'COPY';
@override
String get cutButtonLabel => 'CUT';
@override
String get pasteButtonLabel => 'PASTE';
@override
String get selectAllButtonLabel => 'SELECT ALL';
@override @override
String get viewLicensesButtonLabel => 'VIEW LICENCES'; String get viewLicensesButtonLabel => 'VIEW LICENCES';
...@@ -4388,6 +4460,18 @@ class MaterialLocalizationEnSg extends MaterialLocalizationEn { ...@@ -4388,6 +4460,18 @@ class MaterialLocalizationEnSg extends MaterialLocalizationEn {
@override @override
String get licensesPageTitle => 'Licences'; String get licensesPageTitle => 'Licences';
@override
String get copyButtonLabel => 'COPY';
@override
String get cutButtonLabel => 'CUT';
@override
String get pasteButtonLabel => 'PASTE';
@override
String get selectAllButtonLabel => 'SELECT ALL';
@override @override
String get viewLicensesButtonLabel => 'VIEW LICENCES'; String get viewLicensesButtonLabel => 'VIEW LICENCES';
...@@ -4436,12 +4520,24 @@ class MaterialLocalizationEnZa extends MaterialLocalizationEn { ...@@ -4436,12 +4520,24 @@ class MaterialLocalizationEnZa extends MaterialLocalizationEn {
@override @override
TimeOfDayFormat get timeOfDayFormatRaw => TimeOfDayFormat.HH_colon_mm; TimeOfDayFormat get timeOfDayFormatRaw => TimeOfDayFormat.HH_colon_mm;
@override
String get copyButtonLabel => 'COPY';
@override
String get selectAllButtonLabel => 'SELECT ALL';
@override @override
String get viewLicensesButtonLabel => 'VIEW LICENCES'; String get viewLicensesButtonLabel => 'VIEW LICENCES';
@override @override
String get licensesPageTitle => 'Licences'; String get licensesPageTitle => 'Licences';
@override
String get pasteButtonLabel => 'PASTE';
@override
String get cutButtonLabel => 'CUT';
@override @override
String get popupMenuLabel => 'Pop-up menu'; String get popupMenuLabel => 'Pop-up menu';
......
...@@ -118,12 +118,12 @@ ...@@ -118,12 +118,12 @@
"description": "The label for continue buttons and menu items." "description": "The label for continue buttons and menu items."
}, },
"copyButtonLabel": "COPY", "copyButtonLabel": "Copy",
"@copyButtonLabel": { "@copyButtonLabel": {
"description": "The label for copy buttons and menu items." "description": "The label for copy buttons and menu items."
}, },
"cutButtonLabel": "CUT", "cutButtonLabel": "Cut",
"@cutButtonLabel": { "@cutButtonLabel": {
"description": "The label for cut buttons and menu items." "description": "The label for cut buttons and menu items."
}, },
...@@ -133,12 +133,12 @@ ...@@ -133,12 +133,12 @@
"description": "The label for OK buttons and menu items." "description": "The label for OK buttons and menu items."
}, },
"pasteButtonLabel": "PASTE", "pasteButtonLabel": "Paste",
"@pasteButtonLabel": { "@pasteButtonLabel": {
"description": "The label for paste buttons and menu items." "description": "The label for paste buttons and menu items."
}, },
"selectAllButtonLabel": "SELECT ALL", "selectAllButtonLabel": "Select all",
"@selectAllButtonLabel": { "@selectAllButtonLabel": {
"description": "The label for select-all buttons and menu items." "description": "The label for select-all buttons and menu items."
}, },
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment