-
Notifications
You must be signed in to change notification settings - Fork 936
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Added reloading (Android) #59
Conversation
Added reloading (Android)
Added reloading (Android)
Added reloading (Android)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks, I added some comments
case "back": | ||
back(call, result); | ||
break; | ||
case "forward": |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
bad code format
lib/src/base.dart
Outdated
@@ -113,6 +113,12 @@ class FlutterWebviewPlugin { | |||
/// Will trigger the [onDestroy] event | |||
Future close() => _channel.invokeMethod("close"); | |||
|
|||
Future reload() => _channel.invokeMethod("reload"); | |||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
please comment functions and explain that it is only available on Android for now
Hi, did you take a look at my comments ? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Took note of comments and made appropriate changes
great thank you 👍 |
No description provided.