TRenameDialog constructor

const TRenameDialog({
  1. Key? key,
  2. Widget? title,
  3. String? text,
  4. String? cancelText,
  5. String? submitText,
  6. void onCancel()?,
  7. required void onSubmit(
    1. String text
    ),
  8. Widget? renameLabelText,
  9. void onChanged(
    1. String text
    )?,
  10. List<TextInputFormatter>? inputFormatters,
  11. TextInputType? textInputType,
  12. String? onCheckIsError(
    1. String text
    )?,
  13. bool autofocus = false,
  14. String? hintText,
})

Implementation

const TRenameDialog({
  super.key,
  this.title,
  this.text,
  this.cancelText,
  this.submitText,
  this.onCancel,
  required this.onSubmit,
  this.renameLabelText,
  this.onChanged,
  this.inputFormatters,
  this.textInputType,
  this.onCheckIsError,
  this.autofocus = false,
  this.hintText,
});