MiniloTextField constructor

const MiniloTextField({
  1. Key? key,
  2. String label = 'Label name',
  3. TextEditingController? controller,
  4. String? placeholder,
  5. bool enabled = true,
  6. bool active = false,
  7. bool showRequiredMark = false,
  8. TextInputType? keyboardType,
  9. ValueChanged<String>? onChanged,
  10. double width = 343,
  11. double height = 52,
  12. Widget? trailing,
})

Implementation

const MiniloTextField({
  super.key,
  this.label = 'Label name',
  this.controller,
  this.placeholder,
  this.enabled = true,
  this.active = false,
  this.showRequiredMark = false,
  this.keyboardType,
  this.onChanged,
  this.width = 343,
  this.height = 52,
  this.trailing,
});