scrollable property

bool scrollable
final

Whether this editor should create a scrollable container for its content.

When set to true the editor's height can be controlled by minHeight, maxHeight and expands properties.

When set to false the editor always expands to fit the entire content of the document and should normally be placed as a child of another scrollable widget, otherwise the content may be clipped.

The scrollController property must not be null when this is set to false.

Set to true by default.

Implementation

final bool scrollable;