You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
455 B
12 lines
455 B
import 'package:flutter/services.dart';
|
|
|
|
/// https://github.com/linuxdeepin/dde-daemon/blob/76be73fbf019cee73983292e1edf47611ed9a219/gesture/manager.go#L386
|
|
final Map<LogicalKeyboardKey, String> keyMapper = {
|
|
LogicalKeyboardKey.control: 'ctrl',
|
|
LogicalKeyboardKey.controlLeft: 'ctrl',
|
|
LogicalKeyboardKey.controlRight: 'ctrl',
|
|
LogicalKeyboardKey.shift: 'shift',
|
|
LogicalKeyboardKey.shiftLeft: 'shift',
|
|
LogicalKeyboardKey.shiftRight: 'shift',
|
|
};
|