(value?: string)
| 459 | } |
| 460 | |
| 461 | public _updateStatusBarStyle(value?: string) { |
| 462 | const frame = this.frame; |
| 463 | if (frame?.ios && value) { |
| 464 | const navigationController: UINavigationController = frame.ios.controller; |
| 465 | IOSHelper.invalidateStatusBarAppearance(navigationController, `Page._updateStatusBarStyle:${value}`); |
| 466 | } |
| 467 | } |
| 468 | |
| 469 | public _updateEnableSwipeBackNavigation(enabled: boolean) { |
| 470 | const navController = this._ios.navigationController; |
no test coverage detected