responsive de revision y cedula

This commit is contained in:
Juan Felipe Duarte
2023-06-08 09:33:41 -05:00
parent a90d5dda36
commit 53c948aec1
4 changed files with 31 additions and 55 deletions
+20 -27
View File
@@ -27,9 +27,9 @@ class _ProfessionalRevisionScreenState
padding: const EdgeInsets.only(top: 40),
child: Column(
children: [
Row(
const Row(
mainAxisAlignment: MainAxisAlignment.center,
children: const [
children: [
Icon(
Icons.access_time,
color: Color(0xFF2BA4EC),
@@ -62,34 +62,27 @@ class _ProfessionalRevisionScreenState
),
padding:
const EdgeInsets.symmetric(vertical: 15, horizontal: 25),
child: Wrap(
child: const Wrap(
alignment: WrapAlignment.start, // Centra el contenido
children: [
Row(
children: const [
Icon(
Icons.info_outline,
size: 20,
),
SizedBox(width: 5),
Text(
'Su información, esta en revisión, ',
style: TextStyle(
fontSize: 14,
SizedBox(
width: 350,
child: Row(
children: [
Icon(
Icons.info_outline,
size: 20,
),
),
],
),
const Text(
'una vez aprobada podrá acceder, ',
style: TextStyle(
fontSize: 14,
),
),
const Text(
'al perfil profesional.',
style: TextStyle(
fontSize: 14,
SizedBox(width: 15),
Expanded(
child: Text(
'Su información, esta en revisión, una vez aprobada podrá acceder, al perfil profesional.',
style: TextStyle(
fontSize: 14,
),
),
),
],
),
),
],