-
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 |
|---|---|---|
| @@ -1,5 +1,6 @@ | ||
| ## 0.9.4 | ||
| * Adds iOS implementation | ||
| ## 0.10.0 | ||
|
|
||
| * Adds iOS implementation. | ||
|
|
||
| ## 0.9.3+7 | ||
|
|
||
|
|
||
This file was deleted.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -10,7 +10,8 @@ class NativeWidget extends StatelessWidget { | |
| /// Constructor | ||
| const NativeWidget({super.key, required this.onClick}); | ||
|
|
||
| /// A function to run when the element is clicked | ||
| /// Placeholder param to allow web example to work - | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The constructor parameter is required, but not the property. You can should be able to just make the constructor
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. the linter yells at me if I do this
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Ah, right, because it's matching the other version, but not inheriting from a base class. In this case it's fine to |
||
| /// onClick functionality for iOS is in the PlatformView | ||
| final VoidCallback onClick; | ||
LouiseHsu marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
|
||
| @override | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,4 @@ | ||
| ## 0.9.0 | ||
| ## 0.10.0 | ||
|
|
||
| * Initial release. | ||
|
|
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,3 @@ | ||
| ## 0.9.0 | ||
| ## 0.10.0 | ||
|
|
||
| * Initial release from migration to federated architecture. |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,4 @@ | ||
| ## 0.9.0 | ||
| ## 0.10.0 | ||
|
|
||
| * Initial release. | ||
LouiseHsu marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
|
||
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.
Looks like you maybe need to re-run
pod installin theexample/ios/directory? We shouldn't still have RunnerTest references in the app-facing package's project, just the iOS implementation package.