(callback: (child: View) => boolean)
| 172 | } |
| 173 | |
| 174 | public eachChildView(callback: (child: View) => boolean) { |
| 175 | if (this.itemsLayout) { |
| 176 | callback(this.itemsLayout); |
| 177 | } |
| 178 | } |
| 179 | |
| 180 | public onLayout(left: number, top: number, right: number, bottom: number): void { |
| 181 | const insets = this.getSafeAreaInsets(); |
no test coverage detected