-
Notifications
You must be signed in to change notification settings - Fork 1.7k
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
Using the Controls Application #550
Merged
Merged
Changes from all commits
Commits
Show all changes
32 commits
Select commit
Hold shift + click to select a range
9a6a220
Implement IStartup
jsuarezruiz c79db26
Clean up code
jsuarezruiz b40bd60
Merge branch 'main' into startup
jsuarezruiz 71bb51d
Merge branch 'main' into startup
jsuarezruiz f935032
Move the static Current into MauiApp
mattleibow accc1b3
Add missing SearchBar handler mapping
mattleibow 36c8351
Don't need this anymore
mattleibow a1e163a
Pass the handler along on iOS
mattleibow 9319bf5
Lots more perf fixes
mattleibow a3249b9
Remove App.SetHandlerContext
mattleibow f9b38a6
Fix tests
mattleibow 9ab844f
Merge remote-tracking branch 'origin/main' into startup
mattleibow 0913bdc
Fix catalyst
mattleibow 615b220
revert
mattleibow d6d6c03
Using the Controls Application
mattleibow 4f4e9b2
Use the XamlApp
mattleibow de8a0b6
This is no more!
mattleibow f2ec0f4
Merge remote-tracking branch 'origin/main' into startup
mattleibow 9ee8f91
Merge branch 'main' into startup
jsuarezruiz 3450d57
Fixed build errors
jsuarezruiz 84c9108
Fix the updated SearchBar
mattleibow 88a16e6
Merge branch 'startup' of https://github.com/dotnet/maui into startup
mattleibow 0a08a7b
Merge remote-tracking branch 'origin/main' into startup
mattleibow c3bc181
Merge branch 'startup' into dev/new-applications
mattleibow 6058543
rename ns
mattleibow 1753ee9
gone!
mattleibow d3ce150
Merge remote-tracking branch 'origin/main' into dev/new-applications
mattleibow ddec1b7
reverts
mattleibow f2484d7
Fix iOS
mattleibow fb8a3e7
Merge remote-tracking branch 'origin/main' into dev/new-applications
mattleibow 519a189
:|
mattleibow 19794a6
sp
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 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
86 changes: 0 additions & 86 deletions
86
src/Compatibility/Core/src/Android/Renderers/ActionSheetRenderer.cs
This file was deleted.
Oops, something went wrong.
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.
This is the special place for now since we used to init things like
Device.Info
andPlatformServices
in theForms.Init
but that is currently running inside theActivity
. However, we are now creating apps form theApplication
area.Once we split all this stuff out of
Forms
and into services then this can be removed.