@@ -419,10 +419,6 @@ class DefaultTextEditingShortcuts extends StatelessWidget {
419
419
SingleActivator (LogicalKeyboardKey .arrowLeft, meta: true ): DoNothingAndStopPropagationTextIntent (),
420
420
SingleActivator (LogicalKeyboardKey .arrowRight, meta: true ): DoNothingAndStopPropagationTextIntent (),
421
421
SingleActivator (LogicalKeyboardKey .arrowUp, meta: true ): DoNothingAndStopPropagationTextIntent (),
422
- SingleActivator (LogicalKeyboardKey .pageUp, shift: true ): DoNothingAndStopPropagationTextIntent (),
423
- SingleActivator (LogicalKeyboardKey .pageDown, shift: true ): DoNothingAndStopPropagationTextIntent (),
424
- SingleActivator (LogicalKeyboardKey .end, shift: true ): DoNothingAndStopPropagationTextIntent (),
425
- SingleActivator (LogicalKeyboardKey .home, shift: true ): DoNothingAndStopPropagationTextIntent (),
426
422
SingleActivator (LogicalKeyboardKey .arrowDown): DoNothingAndStopPropagationTextIntent (),
427
423
SingleActivator (LogicalKeyboardKey .arrowLeft): DoNothingAndStopPropagationTextIntent (),
428
424
SingleActivator (LogicalKeyboardKey .arrowRight): DoNothingAndStopPropagationTextIntent (),
@@ -431,12 +427,6 @@ class DefaultTextEditingShortcuts extends StatelessWidget {
431
427
SingleActivator (LogicalKeyboardKey .arrowRight, control: true ): DoNothingAndStopPropagationTextIntent (),
432
428
SingleActivator (LogicalKeyboardKey .arrowLeft, shift: true , control: true ): DoNothingAndStopPropagationTextIntent (),
433
429
SingleActivator (LogicalKeyboardKey .arrowRight, shift: true , control: true ): DoNothingAndStopPropagationTextIntent (),
434
- SingleActivator (LogicalKeyboardKey .pageUp): DoNothingAndStopPropagationTextIntent (),
435
- SingleActivator (LogicalKeyboardKey .pageDown): DoNothingAndStopPropagationTextIntent (),
436
- SingleActivator (LogicalKeyboardKey .end): DoNothingAndStopPropagationTextIntent (),
437
- SingleActivator (LogicalKeyboardKey .home): DoNothingAndStopPropagationTextIntent (),
438
- SingleActivator (LogicalKeyboardKey .end, control: true ): DoNothingAndStopPropagationTextIntent (),
439
- SingleActivator (LogicalKeyboardKey .home, control: true ): DoNothingAndStopPropagationTextIntent (),
440
430
SingleActivator (LogicalKeyboardKey .space): DoNothingAndStopPropagationTextIntent (),
441
431
SingleActivator (LogicalKeyboardKey .enter): DoNothingAndStopPropagationTextIntent (),
442
432
};
@@ -455,6 +445,16 @@ class DefaultTextEditingShortcuts extends StatelessWidget {
455
445
const SingleActivator (LogicalKeyboardKey .arrowRight, shift: true , alt: true ): const DoNothingAndStopPropagationTextIntent (),
456
446
const SingleActivator (LogicalKeyboardKey .arrowLeft, shift: true , meta: true ): const DoNothingAndStopPropagationTextIntent (),
457
447
const SingleActivator (LogicalKeyboardKey .arrowRight, shift: true , meta: true ): const DoNothingAndStopPropagationTextIntent (),
448
+ const SingleActivator (LogicalKeyboardKey .pageUp): const DoNothingAndStopPropagationTextIntent (),
449
+ const SingleActivator (LogicalKeyboardKey .pageDown): const DoNothingAndStopPropagationTextIntent (),
450
+ const SingleActivator (LogicalKeyboardKey .end): const DoNothingAndStopPropagationTextIntent (),
451
+ const SingleActivator (LogicalKeyboardKey .home): const DoNothingAndStopPropagationTextIntent (),
452
+ const SingleActivator (LogicalKeyboardKey .pageUp, shift: true ): const DoNothingAndStopPropagationTextIntent (),
453
+ const SingleActivator (LogicalKeyboardKey .pageDown, shift: true ): const DoNothingAndStopPropagationTextIntent (),
454
+ const SingleActivator (LogicalKeyboardKey .end, shift: true ): const DoNothingAndStopPropagationTextIntent (),
455
+ const SingleActivator (LogicalKeyboardKey .home, shift: true ): const DoNothingAndStopPropagationTextIntent (),
456
+ const SingleActivator (LogicalKeyboardKey .end, control: true ): const DoNothingAndStopPropagationTextIntent (),
457
+ const SingleActivator (LogicalKeyboardKey .home, control: true ): const DoNothingAndStopPropagationTextIntent (),
458
458
};
459
459
460
460
// Hand backspace/delete events that do not depend on text layout (delete
0 commit comments