fluttercommunity / fluttercommunity/flutter_webview_plugin
Progress Indicator
Open
- Dominant language
- Java
- Stars
- 1.5k
- Forks
- 938
- 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
Assessment
This issue has not been assessed yet.