()
| 373 | } |
| 374 | |
| 375 | public _update(): void { |
| 376 | const tv = this.nativeViewProtected; |
| 377 | const tabView = this.parent as TabView; |
| 378 | if (tv && tabView) { |
| 379 | this.tabItemSpec = createTabItemSpec(this); |
| 380 | tabView.updateAndroidItemAt(this.index, this.tabItemSpec); |
| 381 | } |
| 382 | } |
| 383 | |
| 384 | public _getChildFragmentManager(): androidx.fragment.app.FragmentManager { |
| 385 | const tabView = this.parent as TabView; |
nothing calls this directly
no test coverage detected