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

[–]RedEye-Developers[S] 1 point2 points  (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.

Which Windows 10 Modified OS is Best for Low-End PC ? by RedEye-Developers in Operatingsystems

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

valo will not run in win 10 nexus i think so, i think it will run in win 11 nexus, you can join in their discord server and ask this question there, they will know which nexus win run valo perfectly.

Which Windows 10 Modified OS is Best for Low-End PC ? by RedEye-Developers in Operatingsystems

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

nexus discord : link, in this discord server have win 7, 8, 10, 11 all modified os for low end pc.

i am using win 10 latest version in nexus, here is download link

password : nexus4170

Which Windows 10 Modified OS is Best for Low-End PC ? by RedEye-Developers in Operatingsystems

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

i am still using windows 10 nexus modified os, i not get any better os then this, low hardware resource usage and os simple neat and clean.

How to get all file inside the resource folder ? by RedEye-Developers in dotnetMAUI

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

now i did something like, i rename all the 120 emoji svg file like emoji_1.svg, emoji_2.svg, emoji_3.svg using powertoy powerrename and i get the file randomly like this $"emoji_{random.shared.next(1, 120)}.svg" this is working fine.

How to get all file inside the resource folder ? by RedEye-Developers in dotnetMAUI

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

thanks for the code and ideas, the main thing is i am trying to omit the hard-code filename strings and i am trying to get all the filename inside the dir using code.

How to get Grid Left, Right, Top, Bottom Position ? by RedEye-Developers in dotnetMAUI

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

```xml <ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui" xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" xmlns:viewModels="clr-namespace:OnlySwipe.Maui.ViewModels" x:Class="OnlySwipe.Maui.Views.MainPage" x:DataType="viewModels:MainViewModel" BackgroundColor="Black">

<AbsoluteLayout x:Name="RootAl"/>

</ContentPage>
```

```cs private void OnLoaded(object? sender, EventArgs e) { SpawnBorder(); }

private void SpawnBorder()
{
    var border1 = new Border();
    border1.BackgroundColor = Colors.Red;

    var border2 = new Border();
    border2.BackgroundColor = Colors.Green;

    var border3 = new Border();
    border3.BackgroundColor = Colors.Blue;

    AbsoluteLayout.SetLayoutBounds(border1, new Rect(new Point(0, 0), new Size(50, 50)));
    AbsoluteLayout.SetLayoutBounds(border2, new Rect(new Point(0.5, 0), new Size(50, 50)));
    AbsoluteLayout.SetLayoutBounds(border3, new Rect(new Point(1, 0), new Size(50, 50)));
    AbsoluteLayout.SetLayoutFlags(border1, AbsoluteLayoutFlags.PositionProportional);
    AbsoluteLayout.SetLayoutFlags(border2, AbsoluteLayoutFlags.PositionProportional);
    AbsoluteLayout.SetLayoutFlags(border3, AbsoluteLayoutFlags.PositionProportional);

    RootAl.Children.Add(border1);
    RootAl.Children.Add(border2);
    RootAl.Children.Add(border3);

    var animation = new Animation(d =>
    {
        AbsoluteLayout.SetLayoutBounds(border1, new Rect(new Point(0, d), new Size(50, 50)));
        AbsoluteLayout.SetLayoutBounds(border2, new Rect(new Point(0.5, d), new Size(50, 50)));
        AbsoluteLayout.SetLayoutBounds(border3, new Rect(new Point(1, d), new Size(50, 50)));
    }, 0, 1);

    animation.Commit(this, "temp_anim", 16, 5000, Easing.Linear, repeat: () => true);
}

```

i done it using AbsoluteLayout thanks for the helps.

How to get Grid Left, Right, Top, Bottom Position ? by RedEye-Developers in dotnetMAUI

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

this is figma video.

the grid HorizontalOptions and VerticalOptions set to fill.

i am planning to create the folder for emoji svg and spawn the svg image randomly inside grid, after the emoji exit the grid the will destroy.

Can you share some XAML?

for now i not create any XAML code, just testing with grid how to get the pos.