Filtering isn't working in the sample app
Open
- Dominant language
- Kotlin
- Stars
- 899
- Forks
- 55
- PR merge metrics
- No merged PRs in 30d
Description
Both the README and sample app (XML layouts) says the Filter should use `it` to match the view:
`viewFilter = { it !is LinearLayout }`
Or this doesn't work, `it` being an `AndroidView`. `it.view` must be used instead:
`viewFilter = { (it as ScannableView.AndroidView).view !is LinearLayout }`
Contributor guide
Assessment
This issue has not been assessed yet.