Fixed a space input error on iPad. (#1376)

pull/1378/head
liam-duan 2 years ago committed by GitHub
parent 16ba7cbe11
commit b64235c972
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      lib/src/models/documents/nodes/container.dart

@ -25,7 +25,7 @@ abstract class Container<T extends Node?> extends Node {
int get childCount => _children.length;
/// Returns the first child [Node].
Node get first => _children.first;
Node? get first => isEmpty ? null : _children.first;
/// Returns the last child [Node].
Node get last => _children.last;

Loading…
Cancel
Save