AYM1607 / do_more

A good looking glorified todo list built with flutter.
MIT License
29 stars 15 forks source link

Cursor returns to the beginning when taping on the text field in the edit task screen. #8

Closed AYM1607 closed 5 years ago

AYM1607 commented 5 years ago

Try to figure out a way of stopping the controller from returning the cursor to the origin when rebuilding if text is already present in the input.

AYM1607 commented 5 years ago

Solved by keeping the TextEditingController in the State instead of the widget so that way it only has to be created once.