1import { StatusBar } from 'react-native';
2
3// @needsAudit
4/**
5 * Set the background color of the status bar.
6 * @param backgroundColor The background color of the status bar.
7 * @param animated `true` to animate the background color change, `false` to change immediately.
8 * @platform android
9 */
10export default function setStatusBarBackgroundColor(backgroundColor: string, animated: boolean) {
11  StatusBar.setBackgroundColor(backgroundColor, animated);
12}
13