-
Notifications
You must be signed in to change notification settings - Fork 3.6k
[pointer_interceptor] Add iOS implementation and platform interface #5233
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
Changes from 1 commit
e10c9d8
6d3f6ca
f16a10b
09fa93f
f04c392
ee38fa7
6c610b9
45a02df
736b4b1
badba67
8c979d2
7af12bb
276461c
bda6870
29a3cc1
78aa1e3
b9bc419
f968902
f9294ab
3854eb9
ef7f76f
819d7d4
6067505
994a8ae
68a4d8c
2bcdde2
fbf0e04
85f0899
6c18fa9
e6a8a09
a67da96
f38a019
800fba2
b73c75c
b309e31
4edc671
60ec17b
7092edf
196a9dd
d5bf4c9
75a19a8
b53e4f8
afb90bd
7b4d1be
fa36d02
d40abd2
340bd5c
a766eb8
1e5c612
d8a7fd2
39c0439
0d099f4
99bfefa
e8f3445
836cdb9
ba3fd60
a4df634
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
- Loading branch information
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
|
|
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -10,7 +10,10 @@ import 'pointer_interceptor_platform.dart'; | |
| class PlaceholderPointerInterceptor extends PointerInterceptorPlatform { | ||
|
||
| @override | ||
| Widget buildWidget( | ||
| {required Widget child, bool intercepting = true, bool debug = false, Key? key}) { | ||
| {required Widget child, | ||
| bool intercepting = true, | ||
| bool debug = false, | ||
| Key? key}) { | ||
| return child; | ||
| } | ||
| } | ||
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.
New plugins (or new federations in this case) don't need a method channel default interface; the ones we have are legacy to avoid breaking people relying on old behavior. (Also, this doesn't actually use method channels, making the name confusing.)
This can just be moved into the main file as a private class.