Flutter TextField autocomplete overlay

前端 未结 4 994
梦谈多话
梦谈多话 2021-02-07 15:14

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.

Someth

4条回答
  •  鱼传尺愫
    2021-02-07 15:50

    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

提交回复
热议问题