You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As mentioned earlier in the private messages, here is my feedback (for everyone's benefit):
Using ScrollView+HorizontalStackLayout+BindableLayout instead of CollectionView
Yes, we can do it when we have fewer items to work with. But this does not offer virtualization. CollectionView is always better for latge number of items. In this case, we can use the technique suggested by you since the number of items are limited. But regardless, this issue should be address in SDK itself.
Using one NavigationPage instead of replacing the MainPage (if preventing back nav is desired, we can address that also -- Shell does this easily)
Regarding the use of MainPage replacement, I am not a huge fan of Shell. I believe that these are two different patterns/choices available to users. This is working fine in Xamarin, and also worked fine until Maui GA SR-1. It broke in SR-2. So, this is a bug that needs to be fixed. And, can you suggest the alternative as you mentioned above.
Using Fullscreen flag instead of translucent status bar for Android (it was leaving a white gap in my emulator)
This is not an option for the required UI. The FullScreen mode will not work in this case. What I want to achieve is not FullScreen but Transparent Status Bar. I want to continue showing the status bar and not break normal user experience. FullScreen will work if I am building a video playing app, but this is not the case for me.
Padding instead of Margin where margin causes layout to miscalculate
Margins and Paddings should be used for outside and inside spacing respectively as a rule. This might be a short-term solution for now, but this needs to be fixed.
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.
Here are some alternate choices that workaround the bugs impacting this project.