This commit is contained in:
Juan Felipe Duarte
2023-04-19 17:51:08 -05:00
parent 3b28febfec
commit 268af389bb
8 changed files with 690 additions and 55 deletions
+12 -12
View File
@@ -493,7 +493,7 @@ class ProfessionalProfileScreenState extends State<ProfessionalProfileScreen> {
children: [
TextFormField(
controller: _cedulaController,
decoration: InputDecoration(
decoration: const InputDecoration(
prefixIcon: Icon(Icons.person_outline),
hintText: 'Cedula (Obligatorio)'),
),
@@ -502,34 +502,34 @@ class ProfessionalProfileScreenState extends State<ProfessionalProfileScreen> {
onPressed: () {
_showChoiceDialogCedula(context);
},
style: ElevatedButton.styleFrom(
backgroundColor: const Color(0xFFD6F4FF),
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(50),
),
elevation: 0,
minimumSize: const Size(250, 50),
),
child: Row(
mainAxisAlignment: MainAxisAlignment.center,
children: [
Text(
const Text(
'Cedula',
style: TextStyle(
color: Color(0xFF2BA4EC),
fontSize: 17,
),
),
SizedBox(width: 15),
const SizedBox(width: 15),
Icon(
image_cedula != null
? Icons.check
: Icons.file_upload_outlined,
color: Color(0xFF2BA4EC),
color: const Color(0xFF2BA4EC),
size: 30,
),
],
),
style: ElevatedButton.styleFrom(
backgroundColor: Color(0xFFD6F4FF),
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(50),
),
elevation: 0,
minimumSize: Size(250, 50),
),
),
SizedBox(height: _space),
TextFormField(