This commit is contained in:
Juan Felipe Duarte
2023-04-04 09:18:33 -05:00
parent 9656a85090
commit 50737e03dd
7 changed files with 304 additions and 155 deletions
+1 -3
View File
@@ -414,8 +414,6 @@ class _ProfileScreenState extends State<ProfileScreen> {
margin: EdgeInsets.only(top: 170),
child: ElevatedButton(
onPressed: () {
String newName = _nameController.text;
String newEmail = _emailController.text;
updateInfo();
},
child: Text(
@@ -427,7 +425,7 @@ class _ProfileScreenState extends State<ProfileScreen> {
),
),
style: ElevatedButton.styleFrom(
primary: Color(0xFF2BA4EC),
backgroundColor: Color(0xFF2BA4EC),
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(50),
),