目前需要在eletron桌面应用里面嵌入虚拟键盘,屏幕只支持触摸。当前找到了react-simple-keyboard虚拟键盘组件,但是没有找到切换中文功能的办法。大家有没有类似的开发,react适用哪些键盘库?
1.react-touch-screen-keyboard 支持自定义https://github.com/xTrinch/react-touch-screen-keyboardconst CustomMapping = [ ['q', 'w', 'e', 'r', 't', 'y', 'u', 'i', 'o', 'p'], ['a', 's', 'd', 'f', 'g', 'h', 'j', 'k', 'l', '@'], ['z', 'x', 'c', 'v', 'b', 'n', 'm', '.com'] ]; <KeyboardedInput enabled type={this.props.type} value={this.props.value} name={this.props.name} defaultKeyboard={CustomMapping} /> 但是自定义中文键盘配套的字符集还有其他的工程量有点大
1.react-touch-screen-keyboard 支持自定义https://github.com/xTrinch/react-touch-screen-keyboard
但是自定义中文键盘配套的字符集还有其他的工程量有点大