Skip to content

Instantly share code, notes, and snippets.

@WrathChaos
Created March 8, 2020 16:43
Show Gist options
  • Save WrathChaos/827f8b8f64ad8a45980aac819631603d to your computer and use it in GitHub Desktop.
Save WrathChaos/827f8b8f64ad8a45980aac819631603d to your computer and use it in GitHub Desktop.
How to Translucent StatusBar? Article:
import { Platform, StatusBar } from 'react-native';

StatusBar.setBarStyle("light-content");
if (Platform.OS === "android") {
  StatusBar.setBackgroundColor("rgba(0,0,0,0)");
  StatusBar.setTranslucent(true);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment