This commit is contained in:
Juan Felipe Duarte
2023-04-16 17:34:18 -05:00
parent 86e3b47693
commit a22d17b199
16 changed files with 1132 additions and 407 deletions
+9 -8
View File
@@ -29,7 +29,7 @@ class _ProfessionalRevisionScreenState
children: [
Row(
mainAxisAlignment: MainAxisAlignment.center,
children: [
children: const [
Icon(
Icons.access_time,
color: Color(0xFF2BA4EC),
@@ -47,25 +47,26 @@ class _ProfessionalRevisionScreenState
width: 300,
),
Container(
margin: EdgeInsets.symmetric(horizontal: 40),
margin: const EdgeInsets.symmetric(horizontal: 40),
decoration: BoxDecoration(
color: Color(0xFFD6F4FF),
color: const Color(0xFFD6F4FF),
borderRadius: BorderRadius.circular(30),
boxShadow: [
BoxShadow(
color: Colors.grey.withOpacity(0.5),
spreadRadius: 2,
blurRadius: 5,
offset: Offset(0, 3), // changes position of shadow
offset: const Offset(0, 3), // changes position of shadow
),
],
),
padding: EdgeInsets.symmetric(vertical: 15, horizontal: 25),
padding:
const EdgeInsets.symmetric(vertical: 15, horizontal: 25),
child: Wrap(
alignment: WrapAlignment.start, // Centra el contenido
children: [
Row(
children: [
children: const [
Icon(
Icons.info_outline,
size: 20,
@@ -79,13 +80,13 @@ class _ProfessionalRevisionScreenState
),
],
),
Text(
const Text(
'una vez aprobada podrá acceder, ',
style: TextStyle(
fontSize: 14,
),
),
Text(
const Text(
'al perfil profesional.',
style: TextStyle(
fontSize: 14,