TRenameDialog constructor
const
TRenameDialog({
- Key? key,
- Widget? title,
- String? text,
- String? cancelText,
- String? submitText,
- void onCancel()?,
- required void onSubmit(
- String text
- Widget? renameLabelText,
- void onChanged(
- String text
- List<
TextInputFormatter> ? inputFormatters, - TextInputType? textInputType,
- String? onCheckIsError(
- String text
- bool autofocus = false,
- 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,
});