Update login.dart
This commit is contained in:
@@ -60,7 +60,7 @@ class _LoginScreenState extends State<LoginScreen> {
|
|||||||
alignment: Alignment.topLeft,
|
alignment: Alignment.topLeft,
|
||||||
child: Text('Numero de celular',
|
child: Text('Numero de celular',
|
||||||
style: TextStyle(
|
style: TextStyle(
|
||||||
fontSize: 18.0, color: Color(0xFF959595))),
|
fontSize: 18.0, color: Color(0xFF65676B))),
|
||||||
)),
|
)),
|
||||||
const Padding(
|
const Padding(
|
||||||
padding: EdgeInsets.only(bottom: 10),
|
padding: EdgeInsets.only(bottom: 10),
|
||||||
@@ -84,9 +84,9 @@ class _LoginScreenState extends State<LoginScreen> {
|
|||||||
),
|
),
|
||||||
const Padding(
|
const Padding(
|
||||||
padding: EdgeInsets.only(bottom: 40),
|
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,
|
textAlign: TextAlign.center,
|
||||||
style: TextStyle(fontSize: 15.0, color: Color(0xFF959595))),
|
style: TextStyle(fontSize: 13.0, color: Color(0xFF65676B))),
|
||||||
),
|
),
|
||||||
Padding(
|
Padding(
|
||||||
padding: EdgeInsets.only(bottom: 40),
|
padding: EdgeInsets.only(bottom: 40),
|
||||||
@@ -108,7 +108,7 @@ class _LoginScreenState extends State<LoginScreen> {
|
|||||||
BorderRadius.circular(50), // Bordes redondeados
|
BorderRadius.circular(50), // Bordes redondeados
|
||||||
),
|
),
|
||||||
elevation: 0,
|
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(
|
child: Text(
|
||||||
'Entrar con correo electronico',
|
'Entrar con correo electronico',
|
||||||
style: TextStyle(
|
style: TextStyle(
|
||||||
fontSize: 15.0, color: Color(0xFF959595),
|
fontSize: 15.0, color: Color(0xFF65676B),
|
||||||
decoration: TextDecoration.underline, // Subrayado
|
decoration: TextDecoration.underline, // Subrayado
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
@@ -127,14 +127,17 @@ class _LoginScreenState extends State<LoginScreen> {
|
|||||||
),
|
),
|
||||||
RichText(
|
RichText(
|
||||||
text: const TextSpan(
|
text: const TextSpan(
|
||||||
style: TextStyle(fontSize: 16.0, color: Color(0xFF959595)),
|
style: TextStyle(
|
||||||
|
fontSize: 16.0,
|
||||||
|
color: Color(0xFF65676B),
|
||||||
|
fontFamily: 'Poppins'),
|
||||||
children: [
|
children: [
|
||||||
TextSpan(text: 'No estas registrado? '),
|
TextSpan(text: 'No estas registrado? '),
|
||||||
TextSpan(
|
TextSpan(
|
||||||
text: 'Registrarse',
|
text: 'Registrarse',
|
||||||
style: TextStyle(
|
style: TextStyle(
|
||||||
color: Color(0xFF2BA4EC),
|
color: Color(0xFF2BA4EC),
|
||||||
fontWeight: FontWeight.w500)),
|
fontWeight: FontWeight.w600)),
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
)
|
)
|
||||||
|
|||||||
Reference in New Issue
Block a user