Commit 1f1d7285 authored by Jason Simmons's avatar Jason Simmons Committed by GitHub

Enable call to Keyboard.ClearClient now that it's available in the engine (#6384)

Fixes https://github.com/flutter/flutter/issues/6274
parent 57044c2a
...@@ -95,7 +95,7 @@ class KeyboardHandle { ...@@ -95,7 +95,7 @@ class KeyboardHandle {
if (_attached) { if (_attached) {
assert(_keyboard._currentHandle == this); assert(_keyboard._currentHandle == this);
_attached = false; _attached = false;
//_keyboard.service.clearClient(); _keyboard.service.clearClient();
_keyboard._currentHandle = null; _keyboard._currentHandle = null;
_keyboard._scheduleHide(); _keyboard._scheduleHide();
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment