Skip to content

Commit b68eff0

Browse files
committed
bug fixes
1 parent 7c1137d commit b68eff0

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## 0.1.1
1+
## 0.1.2
22

33
* Initial release
44
* Full html support

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# flutterwebview
1+
# flutter_native_web
22

33
Native WebView as a widget in flutter
44

@@ -23,13 +23,13 @@ Inline WebView in flutter using [AndroidView](https://docs.flutter.io/flutter/wi
2323
```yaml
2424

2525
dependencies:
26-
flutterwebview: "^0.1.0"
26+
flutter_native_web: "^0.1.2"
2727

2828
```
2929
3030
```dart
3131

32-
import 'package:flutterwebview/flutterwebview.dart';
32+
import 'package:flutter_native_web/flutterwebview.dart';
3333

3434
```
3535
```dart

example/lib/main.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import 'package:flutter/material.dart';
22

3-
import 'package:flutterwebview/flutterwebview.dart';
3+
import 'package:flutter_native_web/flutterwebview.dart';
44

55
void main() => runApp(new MyApp());
66

example/pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ dev_dependencies:
2424
flutter_test:
2525
sdk: flutter
2626

27-
flutterwebview:
27+
flutter_native_web:
2828
path: ../
2929

3030
# For information on the generic Dart part of this file, see the

lib/flutterwebview.dart

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ class _FlutterWebViewState extends State<FlutterWebView> {
3232
return AndroidView(
3333
viewType: 'ponnamkarthik/flutterwebview',
3434
onPlatformViewCreated: onPlatformCreated,
35-
creationParamsCodec: const StandardMessageCodec(),
36-
gestureRecognizers: [new VerticalDragGestureRecognizer(), new HorizontalDragGestureRecognizer(), new TapGestureRecognizer()],
35+
// creationParamsCodec: const StandardMessageCodec(),
36+
// gestureRecognizers: [new VerticalDragGestureRecognizer(), new HorizontalDragGestureRecognizer(), new TapGestureRecognizer()],
3737
);
3838
}
3939

pubspec.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
name: flutterwebview
1+
name: flutter_native_web
22
description: Flutter Plugin that Renders Native Webview as a widget in flutter
3-
version: 0.1.1
3+
version: 0.1.2
44
author: Karthik Ponnam <[email protected]>
55
homepage: https://github.com/PonnamKarthik/FlutterWebView
66

0 commit comments

Comments
 (0)