Используйте префикс, чтобы показать «XXXXXXXXXXXX» перед текстовым полем.
TextFormField(
decoration: InputDecoration(
hintText: "Enter the number here",
prefix: Text("XXXXXXXXXXXX"),
suffixStyle: TextStyle(color: Colors.grey[800]),
hintStyle: TextStyle(color: Colors.grey),
),
onChanged: (str) {
setState(() {
_value = "XXXXXXXXXXXX" + str;
});
},
),