()
| 711 | |
| 712 | @profile |
| 713 | public onLoaded() { |
| 714 | this.setFlag(Flags.superOnLoadedCalled, true); |
| 715 | if (this._isLoaded) { |
| 716 | return; |
| 717 | } |
| 718 | |
| 719 | this._isLoaded = true; |
| 720 | this._cssState.onLoaded(); |
| 721 | this._resumeNativeUpdates(SuspendType.Loaded); |
| 722 | |
| 723 | this.eachChild((child) => { |
| 724 | this.loadView(child); |
| 725 | |
| 726 | return true; |
| 727 | }); |
| 728 | |
| 729 | this._emit('loaded'); |
| 730 | } |
| 731 | |
| 732 | @profile |
| 733 | public onUnloaded() { |