MCPcopy Index your code
hub / github.com/NativeScript/NativeScript / eachChildView

Method eachChildView

packages/core/ui/page/page-common.ts:150–155  ·  view source on GitHub ↗
(callback: (child: View) => boolean)

Source from the content-addressed store, hash-verified

148 }
149
150 public eachChildView(callback: (child: View) => boolean) {
151 super.eachChildView(callback);
152 if (this.hasActionBar) {
153 callback(this.actionBar);
154 }
155 }
156
157 get _childrenCount(): number {
158 return (this.content ? 1 : 0) + (this._actionBar ? 1 : 0);

Callers 2

_getNativeViewsCountMethod · 0.45
_eachLayoutViewMethod · 0.45

Calls 1

callbackFunction · 0.50

Tested by

no test coverage detected