CarpenterTextFieldsDialog constructor

const CarpenterTextFieldsDialog({
  1. Key? key,
  2. required String title,
  3. required List<CarpenterTextFieldDescriptor> fields,
  4. Widget? header,
  5. String confirmLabel = 'Сохранить',
  6. String cancelLabel = 'Отмена',
  7. 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),
});