navigation: LeftBar/RightBar UI block error
Getting an exception error while having an Image component as a child, for both LeftBar and RightBar.

<LeftBar>
<Image source={{uri: "https://source.unsplash.com/-djRG1vB1pw/100x100"}} style={{...}} />
</LeftBar>
I tried using BarButton and works well, but displays a blue box instead of the actual image.
<LeftBar>
<BarButton image={{uri: "https://source.unsplash.com/-djRG1vB1pw/100x100"}} />
</LeftBar>

The TitleBar however, works as expected.
<TitleBar>
<Image
source={{uri: "https://source.unsplash.com/-djRG1vB1pw/100x100"}}
style={{...}}
/>
</TitleBar>

About this issue
- Original URL
- State: closed
- Created 3 years ago
- Comments: 24 (14 by maintainers)
Ah that’s a shame, I should be able to make do with just a static image. Thanks for the quick replies 👍