BlurryTextField constructor
const
BlurryTextField({
- Key? key,
- required String label,
- required TextEditingController textController,
- required Color themeColor,
- required TextInputType textInputType,
- required bool isPassword,
- required bool withVisibilityEye,
- TextStyle textStyle = const TextStyle(color: Colors.black),
- TextStyle labelStyle = const TextStyle(color: Colors.black),
Implementation
const BlurryTextField({
Key? key,
required this.label,
required this.textController,
required this.themeColor,
required this.textInputType,
required this.isPassword,
required this.withVisibilityEye,
this.textStyle = const TextStyle(color: Colors.black),
this.labelStyle = const TextStyle(color: Colors.black),
}) : super(key: key);