inputPassword method

Widget inputPassword(
  1. Size size
)

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