Please help me , I want to update profile name and email id of user in drawer widget.
Asked
Active
Viewed 627 times
-1
-
Please provide more details. Instead of briefly mentioning your end goal, try to share some code snippets, explain the problem you have encountered and what you have tried to do to fix it. – tomas Mar 10 '20 at 18:27
-
Following on from what tomas has said, explain what you want to achieve (update profile name & user ID), how you are currently trying to achieve it while referring to code snippets and lastly from here you can explain what isn't working - is your program failing or are you stuck on a solution? – Jake Mar 10 '20 at 18:37
1 Answers
0
You can update profle name and email as follow:
...
return Drawer(
child: Column(
children: <Widget>[
UserAccountsDrawerHeader(
accountName: Text("username"),
accountEmail: Text("email"),

Juliantje15
- 138
- 13