You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
472 B
12 lines
472 B
import { StatusBar } from 'react-native';
|
|
// @needsAudit
|
|
/**
|
|
* Set the translucency of the status bar.
|
|
* @param translucent Whether the app can draw under the status bar. When `true`, content will be
|
|
* rendered under the status bar. This is always `true` on iOS and cannot be changed.
|
|
* @platform android
|
|
*/
|
|
export default function setStatusBarTranslucent(translucent) {
|
|
StatusBar.setTranslucent(translucent);
|
|
}
|
|
//# sourceMappingURL=setStatusBarTranslucent.js.map
|