-
Notifications
You must be signed in to change notification settings - Fork 1.9k
[Android] [iOS] [macOS] ContentView and ScrollView also need to handle InputTransparent #21025
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
Closed
Closed
Changes from 6 commits
Commits
Show all changes
24 commits
Select commit
Hold shift + click to select a range
4c4a71e
ContentView also needs to handle InputTransparent
mattleibow 2ab7b5a
ScrollView also needs to support InputTransparent
mattleibow bbdc459
Add some tests
mattleibow eae9698
this
mattleibow 1b03b62
hmm
mattleibow e4d3e42
ws
mattleibow 0c42899
ws
mattleibow 7860084
Merge branch 'main' into dev/transparent-contents
jsuarezruiz 6a1b347
Merge branch 'main' into dev/transparent-contents
mattleibow 3defdf3
fix some tests
mattleibow 269475e
This
mattleibow 0b5a0b5
And iOS
mattleibow c232d02
fix tests
mattleibow 275ad68
Merge branch 'main' into dev/transparent-contents
mattleibow 8d97c27
use the same interface
mattleibow f28cefd
Merge remote-tracking branch 'origin/main' into dev/transparent-contents
mattleibow 05475f2
not for windows yet
mattleibow f5282cf
remove
mattleibow ff9caba
Merge branch 'main' into dev/transparent-contents
mattleibow af8197f
Update ScrollViewHandler.iOS.cs
mattleibow 7d60e8d
Merge branch 'main' into dev/transparent-contents
mattleibow ba07c08
Added some comments
mattleibow 8b4febc
Merge branch 'main' into dev/transparent-contents
mattleibow 0da030f
Merge remote-tracking branch 'origin/main' into dev/transparent-contents
mattleibow 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,7 @@ | ||
| namespace Microsoft.Maui.Platform | ||
| { | ||
| internal interface IInputTransparentManagingView | ||
| { | ||
| bool InputTransparent { get; set; } | ||
| } | ||
| } |
This file contains hidden or 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 hidden or 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 hidden or 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
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.
This logic is no longer needed as we do it in the ViewHandler mapper.