Update code introduction

pull/882/head
X Code 3 years ago
parent 6e40b9dd4e
commit eb15a3e7a9
  1. 17
      CodeIntroduction.md

@ -135,6 +135,7 @@ Embeds can be introduced as Embedabble via the controller, not only Quill. This
**toolbar.dart** **toolbar.dart**
Quill editors can have a Toolbar connected. The toolbar commands the controller which in turn commands the Document which commands the Renderer. Quill editors can have a Toolbar connected. The toolbar commands the controller which in turn commands the Document which commands the Renderer.
The toolbar can be customized to show all or part of the editing controls/buttons. The toolbar can be customized to show all or part of the editing controls/buttons.
The Toolbar offers callbacks for reacting to adding images or videos. The Toolbar offers callbacks for reacting to adding images or videos.
@ -142,16 +143,18 @@ For our own custom embeds we don't have to define extra callback here on the Too
**quill_icon_button.dart** **quill_icon_button.dart**
If we want to create more similar buttons for the Toolbar If we want to create more similar buttons for the Toolbar
**delegate.dart** **delegate.dart**
EditorTextSelectionGestureDetectorBuilderDelegate - Signatures for the methods that the EditableText (QuillEditor) must define to be able to run gesture detector
- getEditableTextKey() `EditorTextSelectionGestureDetectorBuilderDelegate` - Signatures for the methods that the EditableText (QuillEditor) must define to be able to run gesture detector
EditableText is the delegate. - `getEditableTextKey()`
EditableText comes from Flutter - EditableText is the delegate.
The key is the editor widget key. - EditableText comes from Flutter
The key is used to get the state. - The key is the editor widget key.
In the state we have RenderEditor. - The key is used to get the state.
- In the state we have RenderEditor.
### RAW EDITOR ### RAW EDITOR

Loading…
Cancel
Save