styleWhiteOpacity1 method

DefineMTextFieldModifier styleWhiteOpacity1({
  1. String? hintText,
})

Implementation

DefineMTextFieldModifier styleWhiteOpacity1({String? hintText}) {
  return this.copyWith(
    decorationValue: (this.decorationValue ?? InputDecoration()).copyWith(
        hintText: hintText ?? 'Please enter your name...',
        hintStyle: MThemeConfig.textFieldHintStyle),
    valueStyle: MThemeConfig.textFieldStyle,
    valueBackgroundColor: MThemeConfig.bgWhite22,
    valueBorderRadius: BorderRadius.circular(8),
    valueHeight: 52,
  );
}