flutter add icon before text in cupertinotextfield boxdecoration code example
Example: text form field prefix icon
TextField(
// ...,other fields
decoration: InputDecoration(
prefixIcon: prefixIcon??Icon(Icons.done),
),
),