Files
hackathon-v-escape-4ff8b5a6…/frontend/node_modules/expo-status-bar/build/setStatusBarTranslucent.js
marianesaldana 80dbd947e5 Initial commit
2026-05-23 08:59:34 -06:00

12 lines
472 B
JavaScript

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