mainStyle property

ZeroTextfieldStyle get mainStyle

Main ZeroTextfieldStyle that would be applied globally

Implementation

ZeroTextfieldStyle get mainStyle {
  switch (defaultDecorationType) {
    case InputDecorationType.outline:
      return outline;
    case InputDecorationType.rounded:
      return rounded;
    case InputDecorationType.fill:
      return filled;
    case InputDecorationType.underline:
      return underline;
  }
}