0 comments (0 comments)0 reactions (0 reactions)0 assignees (0 assignees)Java1,457 stars (1,457 stars)919 forks (919 forks)batch import
help wanted
Description
How to find a word in loaded page using this package?
Contributor guide
- Tech stack
- flutterdart
- Domain
- mobile
- Issue type
- feature
- DifficultyEstimated implementation difficulty for a new contributor, from 1 for very small changes to 5 for expert-level work.
- 3
- Estimated timeA rough time range for an experienced contributor to investigate, implement, test, and prepare a pull request.
- 1-2 days
- Activity statusHow available the issue appears right now: fresh, active, stale, blocked, or waiting on maintainer input.
- stale
- ClarityHow clearly the issue explains the expected change, acceptance criteria, and next step.
- unclear
- Prerequisites
- Flutter plugin developmentNative WebView APIs (Android & iOS)
- Newbie friendlinessA 1-100 score estimating how approachable this issue is for first-time contributors.
- 20
- Research direction
- This feature can be implemented by leveraging the WebView's built in 'find in page' functionality. On Android, the WebView class provides methods like findAllAsync and findNext. On iOS, WKWebView supports searching via JavaScript. The plugin should expose a Dart method that triggers the native search and highlights results. Relevant files to modify are the Android native handler (likely in java/) and iOS handler (likely in ios/), as well as the Dart interface in flutter webview plugin.dart.