We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 13c5dfb + 39957a1 commit 3599e12Copy full SHA for 3599e12
nativescript-angular/directives/action-bar.ts
@@ -6,7 +6,6 @@ import {
6
NavigationButton,
7
} from "tns-core-modules/ui/action-bar";
8
import { Page } from "tns-core-modules/ui/page";
9
-import { View } from "tns-core-modules/ui/core/view";
10
11
import { isBlank } from "../lang-facade";
12
import {
nativescript-angular/view-util.ts
@@ -218,7 +218,7 @@ export class ViewUtil {
218
}
219
220
// NOTE: This one is O(n) - use carefully
221
- private getChildIndex(parent: any, child: NgView) {
+ public getChildIndex(parent: any, child: NgView) {
222
if (isLayout(parent)) {
223
return parent.getChildIndex(child);
224
} else if (isContentView(parent)) {
0 commit comments