BuildTextField constructor

const BuildTextField({
  1. Key? key,
  2. TextEditingController? controller,
  3. required String label,
  4. void onChanged(
    1. String
    )?,
  5. bool readOnly = false,
  6. String? initialValue,
  7. TextStyle? labelStyle,
  8. EdgeInsetsGeometry? padding,
  9. double? height,
  10. double? width,
})

Implementation

const BuildTextField({
  super.key,
  this.controller,
  required this.label,
  this.onChanged,
  this.readOnly = false,
  this.initialValue,
  this.labelStyle,
  this.padding,
  this.height,
  this.width,
});