08-06-2021 12:25 - edited 08-06-2021 12:26
08-06-2021 12:25 - edited 08-06-2021 12:26
I noticed this excellent option in the SDK of the Settings app.
onAutocomplete={(value) => {
const autoValues = [
{ name: "red", value: "1" },
{ name: "orange", value: "2" },
{ name: "yellow", value: "3" },
{ name: "green", value: "4" },
{ name: "blue", value: "5" },
{ name: "purple", value: "6" }];
return autoValues.filter((option) => option.name.startsWith(value));
}}
I am wondering if there is support to use multiple options as the entry. I am using this for the meds section of my app. So, I would love for people to be able to select multiple meds and then concatenate them as the note.
10-11-2021 02:33
10-11-2021 02:33
Hi, did you ever figure this out?
Author | ch, passion for improvement.