getDropDownDecoration static method

InputDecoration getDropDownDecoration(
  1. String hintName
)

Implementation

static InputDecoration getDropDownDecoration(String hintName) {
  return InputDecoration(
    contentPadding: const EdgeInsets.symmetric(vertical: 12, horizontal: 12),
    labelText: hintName,
    labelStyle: const TextStyle(fontSize: 15, color: Colors.black),
    border: const OutlineInputBorder(),
  );
}