这是我的代码:
EditableText(
focusNode: FocusNode(),
keyboardType: TextInputType.text,
keyboardAppearance: Brightness.dark,
expands: false,
onSubmitted: (text) {
widget.onSubmit(text);
},
cursorColor: Colors.black,
backgroundCursorColor: Colors.black,
style: widget.style,
controller: textEditingController,
);