bool isAnyTextVisible(List<String> texts) { for (final text in _nonEmptyTexts(texts)) { if (isTextVisible(text)) return true; } return false; }