|
|
|
|
|
|
DragStartBehavior dragStartBehavior = DragStartBehavior.down, |
|
|
|
bool? enableInteractiveSelection = null, |
|
|
|
ScrollPhysics scrollPhysics = null, |
|
|
|
GlobalKeyEventHandlerDelegate globalCtrlKeyEventHandler = null |
|
|
|
GlobalKeyEventHandlerDelegate globalKeyEventHandler = null |
|
|
|
) : base(key) { |
|
|
|
D.assert(controller != null); |
|
|
|
D.assert(focusNode != null); |
|
|
|
|
|
|
this.enableInteractiveSelection = enableInteractiveSelection; |
|
|
|
this.dragStartBehavior = dragStartBehavior; |
|
|
|
this.scrollPhysics = scrollPhysics; |
|
|
|
this.globalKeyEventHandler = globalCtrlKeyEventHandler; |
|
|
|
this.globalKeyEventHandler = globalKeyEventHandler; |
|
|
|
} |
|
|
|
|
|
|
|
public readonly TextEditingController controller; |
|
|
|