This repository has been archived by the owner on Feb 22, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9.8k
[webview_flutter_wkwebview] Update copy method for Dart classes and support the NSObject.observeValue
for subclasses
#5961
Merged
Merged
Changes from 31 commits
Commits
Show all changes
36 commits
Select commit
Hold shift + click to select a range
e6618c8
standard creation
bparrishMines 1bd8ca3
fix tests
bparrishMines 6d67ecd
update mocks
bparrishMines 8083132
ensure setup
bparrishMines abec006
current url
bparrishMines e5c820b
only set if nonnull
bparrishMines ed678fd
webview may have gotten it done
bparrishMines 2edf7d7
some more objc polish
bparrishMines 4ffc2de
formatting
bparrishMines 8b7f28a
passing tests
bparrishMines 613d5ac
prevent progress bug
bparrishMines 6c059cf
pass error data back
bparrishMines 1bfa38e
return errors instead
bparrishMines 6aaf2c2
fix returning non bool
bparrishMines 1ab7ceb
return expected string bool and double values
bparrishMines 3c7090a
use objective c string as returning result
bparrishMines 4ff2fc0
dart side of addiing dispose and create webview configuration
bparrishMines bd635a7
webviewconfiguration objc code
bparrishMines 0cdcde3
formatting
bparrishMines 6f9dbc1
store binary messenger
bparrishMines 8bc168e
fix configuration identifier
bparrishMines 5ebbb62
Merge branch 'main' of github.com:flutter/plugins into copies
bparrishMines 191bd31
Merge branch 'main' of github.com:flutter/plugins into copies
bparrishMines c8585c0
new fix for nserror
bparrishMines 37d8300
fix crash
bparrishMines e7b9d11
correct import
bparrishMines 5537463
Merge branch 'main' of github.com:flutter/plugins into copies
bparrishMines b2892e2
formatting and test passing
bparrishMines f40115d
nonatomic
bparrishMines 2a18e2c
duplicate code + missing comma
bparrishMines 3011abe
missing commas
bparrishMines f3f58e3
another missing comma
bparrishMines 353cab1
improve weak comments
bparrishMines d92b699
formatting
bparrishMines 4710dc9
Merge branch 'main' of github.com:flutter/plugins into copies
bparrishMines 7d7a273
Merge branch 'main' of github.com:flutter/plugins into copies
bparrishMines File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
You're adding a reference to BinaryMessenger in this comment throughout the files, even though many of the classes don't have BinaryMessenger properties.
Also, the comment is confusing now because ther are two subjects, but layer the comment refers to "the objects it stores", which applies only to one of them.
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.
Clarified the the comments and created separate ones for
BinaryMessenger
andInstanceManager
.