RenameDialog constructor
const
RenameDialog({
- Key? key,
- Widget? title,
- Widget submitButton(
- BuildContext context,
- void callback()
- Widget cancelButton(
- BuildContext context,
- void callback()
- Widget middleButton(
- BuildContext context
- FocusNode? focusNode,
- Widget? label,
- String? hintText,
- int? maxLines = 1,
- bool isSelectedAll = false,
- TextInputType? textInputType,
- List<
TextInputFormatter> ? inputFormatters, - void onChanged(
- String text
- void onTap()?,
- void onSubmitted(
- String text
- TextStyle? inputStyle,
- bool autofocus = false,
- bool? enabled,
- String? onTestError(
- String text
Implementation
const RenameDialog({
super.key,
this.title,
this.submitButton,
this.cancelButton,
this.middleButton,
this.focusNode,
this.label,
this.hintText,
this.maxLines = 1,
this.isSelectedAll = false,
this.textInputType,
this.inputFormatters,
this.onChanged,
this.onTap,
this.onSubmitted,
this.inputStyle,
this.autofocus = false,
this.enabled,
this.onTestError,
});