getInputDecoration method
Implementation
InputDecoration getInputDecoration(ColorScheme colors, String? label, String? placeholder) {
return InputDecoration(
border: InputBorder.none,
hintText: placeholder ?? label,
hintStyle: getHintStyle(colors),
isCollapsed: true,
contentPadding: const EdgeInsets.symmetric(vertical: 5),
);
}