distance label and text in textfield flutter code example
Example 1: get more space between label text and input text flutter
Can be solved by simply providing the contentPadding.
Example 2: content padding field text flutter
TextField(
textAlign: TextAlign.left,
decoration: new InputDecoration(hintText: "Enter Something", contentPadding: const EdgeInsets.all(20.0))
)