Adding an article to week 02 of articles of the week (#51)

pull/55/head
florianh01 4 years ago committed by GitHub
parent 4dfa6a476f
commit a1d1a5cd2a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      lib/widgets/raw_editor.dart

@ -905,6 +905,7 @@ class RawEditorState extends EditorState
SchedulerBinding.instance.addPostFrameCallback(
(Duration _) => _updateOrDisposeSelectionOverlayIfNeeded());
if (!mounted) return;
setState(() {
// Use widget.controller.value in build()
// Trigger build and updateChildren
@ -959,6 +960,7 @@ class RawEditorState extends EditorState
}
_onChangedClipboardStatus() {
if (!mounted) return;
setState(() {
// Inform the widget that the value of clipboardStatus has changed.
// Trigger build and updateChildren

Loading…
Cancel
Save