Make showCursor default to true

pull/123/head
Xin Yao 4 years ago
parent 30bd6342ea
commit 5b9fb52804
  1. 2
      lib/widgets/raw_editor.dart

@ -85,7 +85,7 @@ class RawEditor extends StatefulWidget {
assert(minHeight == null || minHeight >= 0, 'minHeight cannot be null'),
assert(maxHeight == null || minHeight == null || maxHeight >= minHeight,
'maxHeight cannot be null'),
showCursor = showCursor ?? !readOnly,
showCursor = showCursor ?? true,
super(key: key);
@override

Loading…
Cancel
Save