BottomLineTextFieldForBottomSheet constructor
const
BottomLineTextFieldForBottomSheet({
- required TextEditingController controller,
- required String labelText,
- TextInputType inputType = TextInputType.text,
- int maxLength = TextField.noMaxLength,
- String suffixIcon = "",
- bool readOnly = true,
- void onChange()?,
- required void onTap(),
- Key? key,
Implementation
const BottomLineTextFieldForBottomSheet({
required this.controller,
required this.labelText,
this.inputType = TextInputType.text,
this.maxLength = TextField.noMaxLength,
this.suffixIcon = "",
this.readOnly = true,
this.onChange,
required this.onTap,
super.key
});