(navBar: UINavigationBar)
| 365 | } |
| 366 | |
| 367 | private updateFills(navBar: UINavigationBar) { |
| 368 | const color = this.color; |
| 369 | this.setColor(navBar, color); |
| 370 | |
| 371 | this._setBackgroundColor(navBar, this.style.backgroundColor); |
| 372 | this._createBackgroundUIImage(navBar, this.style.backgroundImage, (image: UIImage) => { |
| 373 | this._setBackgroundImage(navBar, image); |
| 374 | }); |
| 375 | } |
| 376 | |
| 377 | private setColor(navBar: UINavigationBar, color?: Color) { |
| 378 | if (!navBar) { |
no test coverage detected