LabeledTextField constructor

const LabeledTextField({
  1. Key? key,
  2. required String title,
  3. required MaterialTextField textField,
  4. TextStyle? titleStyling,
  5. double labelSpacing = 8,
})

Implementation

const LabeledTextField({
  super.key,
  required this.title,
  required this.textField,
  this.titleStyling,
  this.labelSpacing = 8,
});