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
353 B

import { StatusBar } from 'react-native';
import styleToBarStyle from './styleToBarStyle';
// @needsAudit
/**
* Set the bar style of the status bar.
* @param style The color of the status bar text.
*/
export default function setStatusBarStyle(style) {
StatusBar.setBarStyle(styleToBarStyle(style));
}
//# sourceMappingURL=setStatusBarStyle.js.map