(view: any)
| 1596 | } |
| 1597 | |
| 1598 | function uikitFrameLabel(view: any): string { |
| 1599 | const accessibility = accessibilityInfo(view); |
| 1600 | return ( |
| 1601 | textValue(view) || |
| 1602 | stringValue(accessibility.label) || |
| 1603 | stringValue(read(view, "accessibilityIdentifier")) |
| 1604 | ); |
| 1605 | } |
| 1606 | |
| 1607 | function findSubview(view: any, predicate: (view: any) => boolean): any | null { |
| 1608 | if (!view) { |
no test coverage detected