Displaying suggestions in input box
Hello,
I am building an app that has an input box. While the user is typing on the input box, I want the app to display suggestions according to what the user is typing. Example, the user starts typing "coff..." and while he types a layer under the input box will be displayed suggesting "coffee", "coffee shop", "italian coffee", etc.
A bit like this
I already have an API that returns the suggestions I need, and I assume that is suffices to create an event on the input box so that when value changes the API will be called. My question is, how can I build this layer below the input box where the suggestions will be shown? Is there any component in appery that would allow me to do this?