desktopEditorStyle method

dynamic desktopEditorStyle()

Implementation

EditorStyle desktopEditorStyle() {
  return EditorStyle.desktop(
    padding: widget.editorPadding,
    cursorColor: Theme.of(context).colorScheme.primary,
    selectionColor: Theme.of(context).colorScheme.secondaryContainer,
    textStyleConfiguration: widget.textStyleConfiguration ??
        TextStyleConfiguration(
          text: Theme.of(context).textTheme.bodySmall!,
        ),
  );
}