1

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

mrsamkhar
  • 77
  • 8
  • Please edit the question to limit it to a specific problem with enough detail to identify an adequate answer. – Community Sep 06 '22 at 17:38

1 Answers1

2

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

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

Fiston Emmanuel
  • 4,242
  • 1
  • 8
  • 14