inputUsuario method
Implementation
Widget inputUsuario(Size size) {
return Container(
color: Colors.white,
width: size.width / 1.2,
child: TextField(
controller: usuarioController,
decoration: const InputDecoration(
hintStyle: TextStyle(fontWeight: FontWeight.w300, color: Colors.grey),
hintText: 'ingrese Usuario',
),
),
);
}