normal static method

InputDecoration normal({
  1. String? hintText,
  2. TextStyle? hintStyle,
})

正常

Implementation

static InputDecoration normal({String? hintText, TextStyle? hintStyle}) {
  return InputDecoration(
    hintText: hintText ?? "",
    hintStyle: hintStyle ?? StyleText.grey(size: FConfig.ins.textTwo),
    disabledBorder: InputBorder.none,
    enabledBorder: InputBorder.none,
    focusedBorder: InputBorder.none,
  );
}