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.
11 lines
395 B
11 lines
395 B
import { StatusBar } from 'react-native';
|
|
// @needsAudit
|
|
/**
|
|
* Toggle visibility of the status bar.
|
|
* @param hidden If the status bar should be hidden.
|
|
* @param animation Animation to use when toggling hidden, defaults to `'none'`.
|
|
*/
|
|
export default function setStatusBarHidden(hidden, animation) {
|
|
StatusBar.setHidden(hidden, animation);
|
|
}
|
|
//# sourceMappingURL=setStatusBarHidden.js.map
|