moveCursorDownCommand top-level property

CommandShortcutEvent moveCursorDownCommand
final

Arrow down key events.

  • support
    • desktop
    • web

Implementation

// arrow down key
// move the cursor downward vertically
final CommandShortcutEvent moveCursorDownCommand = CommandShortcutEvent(
  key: 'move the cursor downward',
  getDescription: () => AppFlowyEditorL10n.current.cmdMoveCursorDown,
  command: 'arrow down',
  handler: _moveCursorDownCommandHandler,
);