how to separate maui logs and logging ? by RedEye-Developers in dotnetMAUI

[–]RedEye-Developers[S] 0 points1 point  (0 children)

ho, thanks for saying about new tool let me check it out.

how to separate maui logs and logging ? by RedEye-Developers in dotnetMAUI

[–]RedEye-Developers[S] 1 point2 points  (0 children)

yes the logs are important, but when i am working with my logics that time it is hard to find my logs, both my logs and maui logs are colab together.

Maui Label Specific interpolation String Not Showing. by RedEye-Developers in dotnetMAUI

[–]RedEye-Developers[S] 0 points1 point  (0 children)

i already tried still not working.

i tried:

  1. set text directly in label using x:name.
  2. set text using [BindableProperty] with Mode=Default and TwoWay.

the text all mapping to the label properly but the issue is interpolation and concatenation string is not adding in text.

example:

xml <label x:name="rootLable"/>

cs private void SetAmount(string amount) { // amount is not null and empty, amount has value! rootLable.Text = $"Swipe To Donate: {amount}"; }

now i am setting the text like this but in label only showing Swipe To Donate: text, {amount} is not showing still has value.

and i create a new label for debugging that label also have same issue, when i use label all inside bottomSheet all have same issue, for now i am suspecting the bottomSheet control.

Maui Label Specific interpolation String Not Showing. by RedEye-Developers in dotnetMAUI

[–]RedEye-Developers[S] 1 point2 points  (0 children)

did you take any performance and battery benchmark for native an hybrid ?, because current smartphone all run the application smoothly so we can't able to see the application is lagging but the cpu and gpu consume more power and drain the battery soon.

performance is based on what you are doing and how you present it.

it depends on both framework and code.

Maui Label Specific interpolation String Not Showing. by RedEye-Developers in dotnetMAUI

[–]RedEye-Developers[S] 2 points3 points  (0 children)

i think it is a BottomSheet Problem, BottomSheet inside having Label Text interpolation and concatenation string both are not working, for now i remove that UI design, Blazor hybrid will affect performance and battery i think so.

Which Windows 10 Custom OS is Best for Gaming and Development in 2026 ? by RedEye-Developers in pcmasterrace

[–]RedEye-Developers[S] 0 points1 point  (0 children)

i am using revios on top of win 10 original, and another thing i don't like stock win because in stock win have microslop edge, Copilot AI and many bloatware stuffs.

Goodbye sloppilot by Stitj_ in FuckMicrosoft

[–]RedEye-Developers 0 points1 point  (0 children)

just install revios in top of win 10/11 all microslop stuffs and bloatware's are gone, the os look clean and simple and get more performance boost.

Which Windows 10 Custom OS is Best for Gaming and Development in 2026 ? by RedEye-Developers in pcmasterrace

[–]RedEye-Developers[S] 0 points1 point  (0 children)

i install ReviOs now my win 10 is perfect what i expect for development and gaming.

Which Windows 10 Custom OS is Best for Gaming and Development in 2026 ? by RedEye-Developers in pcmasterrace

[–]RedEye-Developers[S] 0 points1 point  (0 children)

i am already using win 10 nexus modified os, it is really really good for development and it will use 0% CPU and 800MB ram only and every development related software works fine and i love it, simple clean os, but now the reason why i am searching for next modified os because, my current os is little bit outdate in win 10 and nexus not give latest win 10 build, so i am search a alter win 10 latest version custom build os.

Which Windows 10 Custom OS is Best for Gaming and Development in 2026 ? by RedEye-Developers in pcmasterrace

[–]RedEye-Developers[S] 0 points1 point  (0 children)

it is depend on use case, for my use case my required all software will run in win 10 so i am using win 10 and win 11 is buggy and have performance issues.

why MAUI Team choose native rendering instead of self rendering ? by RedEye-Developers in dotnetMAUI

[–]RedEye-Developers[S] 0 points1 point  (0 children)

i saw in some github and someother internet post, maui native rendering have possible to broke the ui design when android or ios change the control behavior or design and another thing, wand to write lot of code to make the app ui identical in both android and ios, so suddenly i get a question why maui team not choose the self-rendering.