CarpenterTextFieldsDialog constructor
const
CarpenterTextFieldsDialog({
- Key? key,
- required String title,
- required List<
CarpenterTextFieldDescriptor> fields, - Widget? header,
- String confirmLabel = 'Сохранить',
- String cancelLabel = 'Отмена',
- BoxConstraints constraints = const BoxConstraints(maxWidth: 560),
Implementation
const CarpenterTextFieldsDialog({
super.key,
required this.title,
required this.fields,
this.header,
this.confirmLabel = 'Сохранить',
this.cancelLabel = 'Отмена',
this.constraints = const BoxConstraints(maxWidth: 560),
});