NiceInPlaceEditor constructor

const NiceInPlaceEditor({
  1. Key? key,
  2. required String value,
  3. void onChanged(
    1. String
    )?,
  4. void onSubmit(
    1. String
    )?,
  5. TextStyle? textStyle,
  6. TextStyle? editingStyle,
  7. bool multiline = false,
  8. int? maxLines,
  9. String? placeholder,
  10. bool enabled = true,
})

Implementation

const NiceInPlaceEditor({
  super.key,
  required this.value,
  this.onChanged,
  this.onSubmit,
  this.textStyle,
  this.editingStyle,
  this.multiline = false,
  this.maxLines,
  this.placeholder,
  this.enabled = true,
});