fluttercommunity / fluttercommunity/flutter_webview_plugin

WebviewScaffold widget in bordered container

Open
#665 1 comment 1 reaction 0 assignees View on GitHub
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,
),
),
),
);
}

![Screenshot_2020-02-18-12-50-29-359_com vedarath ils_tms_admin](https://user-images.githubusercontent.com/45334931/74713519-c092e300-524e-11ea-9b2e-736db64216ce.jpg)

```
```

```
```

```
```

Contributor guide

No contributing guide indexed for this repository

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.