styleWhiteOpacity1 method
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,
);
}