flutter autocomplete textfield code example
Example 1: flutter disable text form field
TextFormField(
enabled: false, //Not clickable and not editable
readOnly: true, //Clickable and not editable
)
Example 2: flutter pretext on textfield
TextField(controller: TextEditingController()..text = 'Your initial value')