Replies: 7 comments 3 replies
-
@maonaoda , Since I don't have the authority to decide, I will cast one vote in favor of this discussion. I think the discussion would be more lively if more people agreed, so if you agree with @maonaoda opinion, please vote yes. |
Beta Was this translation helpful? Give feedback.
-
For Android, it would be easy to customize the Dialog's DimBackgroundColor by adding another constructor with themeResId for MauiPopup.android.cs.
|
Beta Was this translation helpful? Give feedback.
-
Closed as per the Community Stand-up discussion here: https://youtu.be/N9wMcBP4jtg?t=2889 |
Beta Was this translation helpful? Give feedback.
-
Hello could you please share your code for InternalAccessHelper? I am trying to implement your workaround for MAUI Editor alignment issues on iOS dotnet/maui#18282 (comment) Thank you! |
Beta Was this translation helpful? Give feedback.
-
Yeah I'm still seeing the issue with the latest version of MAUI.
Unfortunately your fix isn't working for me either and the placeholder
doesn't show when I use your handler.
…On Fri, 12 Jan 2024, 01:24 maonaoda, ***@***.***> wrote:
@tomShoutTheSecond <https://github.com/tomShoutTheSecond>
It seems had been fixed on dotnet/maui#18672
<dotnet/maui#18672>, OMG,Maui 8.0.3 is not having
it yet?
public static object GetInternalProperty(object target, string propertyName, bool baseType = false, BindingFlags bindingFlags = BindingFlags.Instance | BindingFlags.NonPublic)
{
var targetType = baseType ? target.GetType().BaseType : target.GetType();
var propertyInfo = targetType.GetProperty(propertyName, bindingFlags);
if (propertyInfo != null)
{
return propertyInfo.GetValue(target);
}
else
{
throw new ArgumentException($"Property '{propertyName}' not found on type '{targetType.FullName}'.");
}
}
—
Reply to this email directly, view it on GitHub
<#1461 (reply in thread)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AKBZD5TXQ3WX3O7M33INP43YOCGELAVCNFSM6AAAAAA6DBEDYOVHI2DSMVQWIX3LMV43SRDJONRXK43TNFXW4Q3PNVWWK3TUHM4DCMBTGI4DO>
.
You are receiving this because you were mentioned.Message ID:
***@***.***>
|
Beta Was this translation helpful? Give feedback.
-
If you provide your handler, I might be able to help you take a look. |
Beta Was this translation helpful? Give feedback.
-
Thanks, I have fixed the problem using my own handler:
|
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
@cat0363
Sorry for @ you.
Is it possible to make MauiPopup`s ViewController set to public for more freedom of customization.
such as
and reset the ViewController with wanted.
※I implemented LoadingIndicatorPage using PopUp, and after calling to close this Page, then show another PopUp.
But at this time, there is a high probability that WindowStateManager.Default.GetCurrentUIViewController() will return previous MauiPopUp.
I am using ↓ to get (set) MauiPopup`s Internal (UIViewController)? named ViewController currently.
But I don't want to use reflection if possible
(MauiPopup.macios.cs)
Beta Was this translation helpful? Give feedback.
All reactions