The cursor is continuously moving to front while typing data in text field. Before it is not there but once I wired onChange event, it is happening.
My issue:

My code:
Padding( padding: const EdgeInsets.all(8.0), child: TextField( controller: descriptionController, decoration: InputDecoration( labelText: 'Any Details', hintText: "e.g. Whatever details you want to save", labelStyle: textStyle, border: OutlineInputBorder( borderRadius: BorderRadius.circular(5.0) ), ), keyboardType: TextInputType.text, onChanged: (String string){ setState(() { if (string != null){ coinOrder.description = string; } }); }, ), )--
You received this message because you are subscribed to the Google Groups "Flutter Development (flutter-dev)" group.
To unsubscribe from this group and stop receiving emails from it, send an email to flutter-dev...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/flutter-dev/fc9c9967-0392-4316-b8c7-8bb5d54fc6c8n%40googlegroups.com.