fluttercommunity / fluttercommunity/flutter_webview_plugin
WebviewScaffold widget in bordered container
- Dominant language
- Java
- Stars
- 1.5k
- Forks
- 938
- PR merge metrics
- No merged PRs in 30d
Description
I want to make rounded corner of my webview with your plugin but its not working correctly. Official Flutter plugin is working with rounded corner but official plugin not working when we use keyboard.
## System info
Issue occurs on: Android, iOS(Not having Mac)
Plugin version: 0.3.10+1
Flutter doctor output:
Doctor summary (to see all details, run flutter doctor -v):
[✓] Flutter (Channel stable, v1.12.13+hotfix.8, on Linux, locale en_IN)
[✓] Android toolchain - develop for Android devices (Android SDK version 29.0.2)
[✓] Android Studio (version 3.5)
[✓] Connected device (2 available)
• No issues found!
## Steps to Reproduce
My Code:
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
backgroundColor: Colors.blue,
title: Text('Flutter'),
titleSpacing: 0.0,
),
body: Container(
margin: EdgeInsets.all(16.0),
decoration: BoxDecoration(
borderRadius: BorderRadius.circular(12.0),
boxShadow: [BoxShadow(blurRadius: 2, color: Colors.red)]),
child: ClipRRect(
borderRadius: BorderRadius.circular(12.0),
child: WebviewScaffold(
url: 'https://flutter.dev/',
resizeToAvoidBottomInset: true,
),
),
),
);
}

```
```
```
```
```
```
Contributor guide
No contributing guide indexed for this repository
Research direction
Start by reproducing the supplied Scaffold, ClipRRect, and WebviewScaffold example with plugin version 0.3.10+1 on Android and iOS. Compare the bordered WebView and keyboard behavior with the stated official-plugin behavior; done means the rounded corners render correctly without losing the required keyboard behavior.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- dart, java
- Domain
- mobile
- Issue type
- Bug
- Difficulty
- 4/5
- Estimated time
- 3-5 days
- Activity status
- Stale
- Clarity
- Needs clarification
- Newbie friendliness
- 20/100