fluttercommunity / fluttercommunity/flutter_webview_plugin
Progress Indicator
- Dominant language
- Java
- Stars
- 1.5k
- Forks
- 936
- PR merge metrics
- No merged PRs in 30d
Description
Web pages appear if the widget in the `initialChild` is wrapped in `Center()` widget
```dart
WebviewScaffold(
url: _url,
hidden: true,
initialChild: Center(
child: LinearProgressIndicator()
)
)
```
but does not appear if it is not wrapped in a `Center() `widget
```dart
WebviewScaffold(
url: _url,
hidden: true,
initialChild: LinearProgressIndicator()
)
```
Contributor guide
No contributing guide indexed for this repository
Research direction
Reproduce the two WebviewScaffold examples using initialChild with and without Center and compare their visible behavior. Trace how WebviewScaffold handles initialChild during page loading, then verify that a LinearProgressIndicator is displayed in the unwrapped case as well.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- dart, flutter
- Domain
- mobile
- Issue type
- Bug
- Difficulty
- 3/5
- Estimated time
- 1-2 days
- Activity status
- Stale
- Clarity
- Mostly clear
- Newbie friendliness
- 45/100