是否可以在React Native中设置整个应用程序的背景

Is it possible to set background of the whole app in React Native?

本文关键字:应用程序 背景 设置 React Native 是否      更新时间:2023-09-26

当我来回更改视图时,上一个视图变小,出现白色边框。我认为这只是应用程序的背景或其他什么。是否可以在React Native或X-Code中更改颜色?

将其添加到AppDelegate.m

  self.window.rootViewController.view.backgroundColor = [UIColor colorWithRed:0.05 green:0.39 blue:0.70 alpha:1.0];

这会把它变成蓝色。