inputPassword method
Implementation
Widget inputPassword(Size size) {
return SizedBox(
width: size.width / 1.2,
child: TextField(
controller: passwordController,
decoration: const InputDecoration(
hintStyle: TextStyle(fontWeight: FontWeight.w300, color: Colors.grey),
hintText: "ingrese password",
),
),
);
}