xTF method
tf mean TextFormFiled
Implementation
Widget xTF({
final double fontSize,
final TextEditingController controller,
final Color color,
final double lableSize,
final Color textColor,
final bool obscureText,
final Key key,
}) {
return TextFiledMaterial(
name: this,
color: color,
fontSize: fontSize,
lableSize: lableSize,
obscureText: obscureText,
textColor: textColor,
controller: controller,
key: key,
);
}