how to make status bar use background as image in React Native

Viewed 46

I want this status bar to take the background as this image, is it possible with react native and what could be the approach

enter image description here

1 Answers

Scale background image to fit device dimension then change StatusBar background to transparent and enable translucent

<StatusBar
   backgroundColor="transparent"
   translucent={true}
/>

Related