Closed randomkrishna closed 6 years ago
I found the solution, we have to place our Icon in Text component then it works.
const rightIcon = <Text><FontAwesomeIcon name="menu" size={30} color="#fff" /></Text>;
<ModalSelector data={data} initValue={rightIcon} />
@randomkrishna
Try using the icon directly. For instance:
const rightIcon = <FontAwesomeIcon name="menu" size={30} color="#fff" />;
I want to set initValue as an icon and even after onChange it should be the same icon. How can I achieve this?