fluttercommunity / fluttercommunity/flutter_webview_plugin

WebviewScaffold widget in bordered container

オープン
#665 コメント 1 件 リアクション 1 件 担当者 0 名 GitHub で見る
主要言語
Java
スター
1.5k
フォーク
938
PR マージ指標
30日以内にマージされた PR はありません

説明

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)

```
```

```
```

```
```

コントリビューションガイド

このリポジトリのコントリビューションガイドは索引されていません

評価

この issue はまだ評価されていません。

新しい issue をメールで受け取る

初心者向けの GitHub issue を短くまとめたダイジェスト。