I need to create a text file in Flutter with a filled color. However, it should have a border in the editing area and a white suffix icon. See the attached screenshot of the Figma design.
In the textfiled’s fillColor property it fill whole textfiled.
2
Answers
Try below code hope it helps to you.
I have take
Container
andTextFormField
widget and wrap myTextFormField
insideContainer
and make some changes according to your provided UI.Code:
Result Screen
As you required suffixIcon and Icon in same Row use Container like below
Use FocusNode for change border color of Container while focus on TextField
Here is the Container