inputDecorationDD_btn method

dynamic inputDecorationDD_btn({
  1. Color? colorBorderANDlabel,
})
inherited

Implementation

inputDecorationDD_btn({Color? colorBorderANDlabel}) {
  return InputDecoration(
    isCollapsed: true,
    labelStyle: XStyles.xStyTextForLabel(textColor: colorBorderANDlabel ?? Colors.white),
    border: inputDecorationForDD(colorBorderANDlabel ?? Colors.white),
    disabledBorder: inputDecorationForDD(colorBorderANDlabel ?? Colors.white),
    enabledBorder: inputDecorationForDD(colorBorderANDlabel ?? Colors.white),
  );
}