/* * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ #import #import @implementation RCTAlertController - (void)show:(BOOL)animated completion:(void (^)(void))completion { if (@available(iOS 13.0, *)) { UIUserInterfaceStyle style = RCTSharedApplication().delegate.window.overrideUserInterfaceStyle ?: UIUserInterfaceStyleUnspecified; self.overrideUserInterfaceStyle = style; } [[RCTKeyWindow() rootViewController] presentViewController:self animated:animated completion:completion]; } @end