normal static method
正常
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,
);
}