BuildTextField constructor
const
BuildTextField({
- Key? key,
- TextEditingController? controller,
- required String label,
- void onChanged()?,
- bool readOnly = false,
- String? initialValue,
- TextStyle? labelStyle,
- EdgeInsetsGeometry? padding,
- double? height,
- 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,
});