In Flutter, you can easily show a “hint” or a placeholder text for your input by adding an InputDecoration object to the decoration constructor parameter for the Text Widget.
Body: Center(
child: TextField(
decoration: InputDecoration(hintText: "This is a hint"),
)
)