NeoTextField constructor

const NeoTextField({
  1. Key? key,
  2. TextEditingController? controller,
  3. String? hintText,
  4. Color? fillColor,
  5. Color shadowColor = Colors.black,
  6. Color? foregroundColor,
  7. Offset offset = const Offset(3, 3),
})

Implementation

const NeoTextField({
  super.key,
  this.controller,
  this.hintText,
  this.fillColor,
  this.shadowColor = Colors.black,
  this.foregroundColor,
  this.offset = const Offset(3, 3),
});