Hello,
I'm having an issue where icons don't appear in iOS when I open the menu.
I've been having this problem ever since I upgraded to Expo SDK 55 with the new architecture.
Can anyone help me? Here's the code
const actions: MenuAction[] = useMemo( () => [ { id: 'tire-info', title: t('Tire information'), image: 'plus',/*'ic_information_outline_grey600_36dp',*/ state: 'mixed' }, { id: 'photo', title: t('Photo'), image: 'ic_photo_camera_outline_grey600_36dp' }, { id: 'character-recognition', title: t('Character recognition'), image: 'ic_camera_enhance_outline_grey600_36dp', }, { id: 'visual-inspections', title: t('Visual inspections'), image: 'ic_alert_outline_grey600_36dp', }, { id: 'tread-depth', title: t('Tread depth'), image: 'ic_tire_grey600_36dp', }, ], [t], )
For testing i use "image: 'plus'". But no icon shown.
Can you help me?
Hello,
I'm having an issue where icons don't appear in iOS when I open the menu.
I've been having this problem ever since I upgraded to Expo SDK 55 with the new architecture.
Can anyone help me? Here's the code
const actions: MenuAction[] = useMemo( () => [ { id: 'tire-info', title: t('Tire information'), image: 'plus',/*'ic_information_outline_grey600_36dp',*/ state: 'mixed' }, { id: 'photo', title: t('Photo'), image: 'ic_photo_camera_outline_grey600_36dp' }, { id: 'character-recognition', title: t('Character recognition'), image: 'ic_camera_enhance_outline_grey600_36dp', }, { id: 'visual-inspections', title: t('Visual inspections'), image: 'ic_alert_outline_grey600_36dp', }, { id: 'tread-depth', title: t('Tread depth'), image: 'ic_tire_grey600_36dp', }, ], [t], )For testing i use "image: 'plus'". But no icon shown.
Can you help me?