Without setting an image color, it appears that the icon does not render:
const USER_MENU: MenuAction[] = [
{
id: "add",
title: "Add",
image: "plus",
// imageColor: "black",
},
];
After setting a color:
const USER_MENU: MenuAction[] = [
{
id: "add",
title: "Add",
image: "plus",
imageColor: "black",
},
];
I believe this may be due to the new architecture migration. In an older project of mine, I do not have the above issue.
Without setting an image color, it appears that the icon does not render:
After setting a color:
I believe this may be due to the new architecture migration. In an older project of mine, I do not have the above issue.