Is there any way to hide suggestion mode
hieunm22 opened this issue · 2 comments
hieunm22 commented
jhonber commented
Hello @hieunm22,
sure, you need to pass in categories
prop an array with the list you want. In your case skip Categories.SUGGESTED
category.
const customCategories = [
{
category: Categories.SMILEYS_PEOPLE,
name: 'Smileys & People',
},
{
category: Categories.ANIMALS_NATURE,
name: 'Animals & Nature',
},
...
];
<Picker
categories={customCategories}
...
/>