editorField property

EditorField? editorField
final

The CodeCrafter widget uses TextField under the hood, So the properties given to this EditorField class gets passed to the undelying TextField of CodeCrafter.

Example:

CodeCrafter(
 editorField: EditorField(
  onTap: () {
   print('Tapped on CodeCrafter');
 },
),

Implementation

final EditorField? editorField;