Answers for "change status bar color ios react native"

0

change status bar color ios react native

import React from 'react'
import { View, Text, StatusBar, LogBox, Platform } from 'react-native'
import Routes from './Src/Routes'

const App = () => {
  if (Platform.OS == 'ios') {
  	  StatusBar.setBarStyle('light-content', true);	//<<--- add this
  }
  return (
    <>
      <StatusBar backgroundColor={"#000"} />
      <Routes />
    </>
  )
}

export default App
Posted by: Guest on May-17-2021

Code answers related to "change status bar color ios react native"

Code answers related to "Javascript"

Browse Popular Code Answers by Language