1"use strict";
2Object.defineProperty(exports, "__esModule", { value: true });
3const config_plugins_1 = require("expo/config-plugins");
4const withAndroidRootViewBackgroundColor_1 = require("./withAndroidRootViewBackgroundColor");
5const withAndroidUserInterfaceStyle_1 = require("./withAndroidUserInterfaceStyle");
6const withIosRootViewBackgroundColor_1 = require("./withIosRootViewBackgroundColor");
7const withIosUserInterfaceStyle_1 = require("./withIosUserInterfaceStyle");
8const pkg = require('expo-system-ui/package.json');
9const withSystemUI = (config) => {
10    return (0, config_plugins_1.withPlugins)(config, [
11        withAndroidRootViewBackgroundColor_1.withAndroidRootViewBackgroundColor,
12        withIosRootViewBackgroundColor_1.withIosRootViewBackgroundColor,
13        withAndroidUserInterfaceStyle_1.withAndroidUserInterfaceStyle,
14        withIosUserInterfaceStyle_1.withIosUserInterfaceStyle,
15    ]);
16};
17exports.default = (0, config_plugins_1.createRunOncePlugin)(withSystemUI, pkg.name, pkg.version);
18