moveCursorUpCommand top-level property

CommandShortcutEvent moveCursorUpCommand
final

Arrow up key events.

  • support
    • desktop
    • web

Implementation

// arrow up key
// move the cursor upward vertically
final CommandShortcutEvent moveCursorUpCommand = CommandShortcutEvent(
  key: 'move the cursor upward',
  getDescription: () => AppFlowyEditorL10n.current.cmdMoveCursorUp,
  command: 'arrow up',
  handler: _moveCursorUpCommandHandler,
);