AppTextField constructor

const AppTextField({
  1. Key? key,
  2. String label = "",
  3. TextEditingController? controller,
  4. String? hintText,
  5. ValueChanged<String>? onChanged,
  6. bool isLabelVisible = false,
  7. String? initialValue,
})

Implementation

const AppTextField({
  super.key,
  this.label = "",
  this.controller,
  this.hintText,
  this.onChanged,
  this.isLabelVisible = false, String? initialValue,
});