mapa perfil profesional

This commit is contained in:
Juan Felipe Duarte
2023-04-22 19:02:24 -05:00
parent 03bd8401b5
commit 4f900db559
6 changed files with 320 additions and 128 deletions
+6 -7
View File
@@ -132,14 +132,14 @@ class _ProfileScreenState extends State<ProfileScreen> {
_showChoiceDialog(context);
},
child: Container(
margin: EdgeInsets.symmetric(vertical: 50),
margin: const EdgeInsets.symmetric(vertical: 50),
width: 100,
height: 100,
decoration: BoxDecoration(
color: Color(0xFF2BA4EC),
color: const Color(0xFF2BA4EC),
borderRadius: BorderRadius.circular(50),
),
child: Icon(
child: const Icon(
Icons.person,
color: Colors.white,
size: 90,
@@ -189,7 +189,6 @@ class _ProfileScreenState extends State<ProfileScreen> {
}
}
} catch (e) {
print('XD $e');
return GestureDetector(
onTap: () {
_showChoiceDialog(context);
@@ -302,7 +301,7 @@ class _ProfileScreenState extends State<ProfileScreen> {
child: ListBody(
children: [
GestureDetector(
child: Text(
child: const Text(
textAlign: TextAlign.center,
"Tomar foto",
style: TextStyle(color: Color(0xFF2BA4EC)),
@@ -315,9 +314,9 @@ class _ProfileScreenState extends State<ProfileScreen> {
Navigator.of(context).pop();
},
),
Divider(color: Colors.black54),
const Divider(color: Colors.black54),
GestureDetector(
child: Text(
child: const Text(
textAlign: TextAlign.center,
"Abrir Galería",
style: TextStyle(color: Color(0xFF2BA4EC)),