Update login.dart
This commit is contained in:
@@ -60,7 +60,7 @@ class _LoginScreenState extends State<LoginScreen> {
|
||||
alignment: Alignment.topLeft,
|
||||
child: Text('Numero de celular',
|
||||
style: TextStyle(
|
||||
fontSize: 18.0, color: Color(0xFF959595))),
|
||||
fontSize: 18.0, color: Color(0xFF65676B))),
|
||||
)),
|
||||
const Padding(
|
||||
padding: EdgeInsets.only(bottom: 10),
|
||||
@@ -84,9 +84,9 @@ class _LoginScreenState extends State<LoginScreen> {
|
||||
),
|
||||
const Padding(
|
||||
padding: EdgeInsets.only(bottom: 40),
|
||||
child: Text('Un código sera enviado a este numero de celular',
|
||||
child: Text('Un código será enviado a este numero de celular.',
|
||||
textAlign: TextAlign.center,
|
||||
style: TextStyle(fontSize: 15.0, color: Color(0xFF959595))),
|
||||
style: TextStyle(fontSize: 13.0, color: Color(0xFF65676B))),
|
||||
),
|
||||
Padding(
|
||||
padding: EdgeInsets.only(bottom: 40),
|
||||
@@ -108,7 +108,7 @@ class _LoginScreenState extends State<LoginScreen> {
|
||||
BorderRadius.circular(50), // Bordes redondeados
|
||||
),
|
||||
elevation: 0,
|
||||
minimumSize: Size(220, 50), // Tamaño mínimo del botón
|
||||
minimumSize: Size(230, 60), // Tamaño mínimo del botón
|
||||
),
|
||||
)),
|
||||
),
|
||||
@@ -119,7 +119,7 @@ class _LoginScreenState extends State<LoginScreen> {
|
||||
child: Text(
|
||||
'Entrar con correo electronico',
|
||||
style: TextStyle(
|
||||
fontSize: 15.0, color: Color(0xFF959595),
|
||||
fontSize: 15.0, color: Color(0xFF65676B),
|
||||
decoration: TextDecoration.underline, // Subrayado
|
||||
),
|
||||
),
|
||||
@@ -127,14 +127,17 @@ class _LoginScreenState extends State<LoginScreen> {
|
||||
),
|
||||
RichText(
|
||||
text: const TextSpan(
|
||||
style: TextStyle(fontSize: 16.0, color: Color(0xFF959595)),
|
||||
style: TextStyle(
|
||||
fontSize: 16.0,
|
||||
color: Color(0xFF65676B),
|
||||
fontFamily: 'Poppins'),
|
||||
children: [
|
||||
TextSpan(text: 'No estas registrado? '),
|
||||
TextSpan(
|
||||
text: 'Registrarse',
|
||||
style: TextStyle(
|
||||
color: Color(0xFF2BA4EC),
|
||||
fontWeight: FontWeight.w500)),
|
||||
fontWeight: FontWeight.w600)),
|
||||
],
|
||||
),
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user