|
@@ -214,6 +214,7 @@ class TerminalViewState extends State<TerminalView> {
|
|
|
child = CustomTextEdit(
|
|
child = CustomTextEdit(
|
|
|
key: _customTextEditKey,
|
|
key: _customTextEditKey,
|
|
|
focusNode: _focusNode,
|
|
focusNode: _focusNode,
|
|
|
|
|
+ autofocus: widget.autofocus,
|
|
|
inputType: widget.keyboardType,
|
|
inputType: widget.keyboardType,
|
|
|
keyboardAppearance: widget.keyboardAppearance,
|
|
keyboardAppearance: widget.keyboardAppearance,
|
|
|
deleteDetection: widget.deleteDetection,
|
|
deleteDetection: widget.deleteDetection,
|
|
@@ -238,6 +239,7 @@ class TerminalViewState extends State<TerminalView> {
|
|
|
child = CustomKeyboardListener(
|
|
child = CustomKeyboardListener(
|
|
|
child: child,
|
|
child: child,
|
|
|
focusNode: _focusNode,
|
|
focusNode: _focusNode,
|
|
|
|
|
+ autofocus: widget.autofocus,
|
|
|
onInsert: _onInsert,
|
|
onInsert: _onInsert,
|
|
|
onComposing: _onComposing,
|
|
onComposing: _onComposing,
|
|
|
onKey: _onKeyEvent,
|
|
onKey: _onKeyEvent,
|