I am struggling to create TextField with autocomplete overlay.
I have form with TextFields and I want to display suggestions based on what is typed in TextField.
I have implemented a package, flutter_typeahead to do exactly that. In this package, I use Overlay.of(context).insert, which allows me to insert the suggestions list in the Overlay, making it float on top of all other widgets. I also wrote this article to explain how to do this in detail