editorScrollController property

EditorScrollController? editorScrollController
final

Provide a editorScrollController to control the scroll behavior

Notes: the shrinkWrap will affect the layout behavior of the editor. Be carefully to set it as true, it will perform poorly.

shrinkWrap == true: will use SingleChildView + Column to layout the editor. shrinkWrap == false: will use ListView to layout the editor.

Implementation

final EditorScrollController? editorScrollController;