是否仍然可以使用 angular2/nativescript 更改某些页面上的状态栏颜色?
我尝试从文档中使用这种方式,但它不起作用。
import { topmost } from "tns-core-modules/ui/frame";
if (topmost().ios) {
var navigationBar = topmost().ios.controller.navigationBar;
// 0: default
// 1: light
navigationBar.barStyle = 1;
}
游乐场示例在这里:https ://play.nativescript.org/?template=play-ng&id=z8CnAz
PS:我需要在第一页有黑色状态栏,在第二页有白色。可能吗?