Hi@akhtar,
You can add any Icon to your TextField. For that TextField has one argument named prefixIcon. You can also see the below code.
TextField(
onChanged: (val) {
email = val;
},
decoration: InputDecoration(
prefixIcon: Icon(Icons.email),
labelText: "Email ID",
),
),