JobSimpleTextField constructor

const JobSimpleTextField({
  1. Key? key,
  2. required String canonicalLabel,
  3. required String hintLabel,
  4. Widget? trailingChild,
  5. Widget? leadingChild,
  6. required void onChanged(
    1. String str
    ),
  7. String validator(
    1. String? str
    )?,
})

Implementation

const JobSimpleTextField(
    {super.key,
    required this.canonicalLabel,
    required this.hintLabel,
    this.trailingChild,
    this.leadingChild,
    required this.onChanged,
    this.validator});