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
Assessment
This issue has not been assessed yet.