bugfix: can't drag select text
@ -490,7 +490,13 @@ class RawEditorState extends EditorState
}
@override
void bringIntoView(TextPosition position) {}
void bringIntoView(TextPosition position) {
setState(() {
widget.controller.selection = TextSelection(
baseOffset: widget.controller.selection.baseOffset,
extentOffset: position.offset);
});
void connectionClosed() {