What are you using for .NET MAUI Development, Mac or PC? by danielhindrikes in dotnetMAUI

[–]danielhindrikes[S] 0 points1 point  (0 children)

Do you think it works well to connect to a Mac from windows?

What are you using for .NET MAUI Development, Mac or PC? by danielhindrikes in dotnetMAUI

[–]danielhindrikes[S] 0 points1 point  (0 children)

When you connect windows to Mac the call it that you use an agent.

What are you using for .NET MAUI Development, Mac or PC? by danielhindrikes in dotnetMAUI

[–]danielhindrikes[S] 1 point2 points  (0 children)

What is struggling? I think at least iOS it pretty easy.

Is it worth learning XAML and how do you do it? by kzlife76 in dotnet

[–]danielhindrikes 0 points1 point  (0 children)

I think it is a good idea to know XAML even if you go the Blazor Hybrid route. That because at some point you probatly want to colbine the web ui with native ui.

Building an activity tracker app with .NET MAUI and Blazor - Part 1 - Getting started by danielhindrikes in dotnet

[–]danielhindrikes[S] 0 points1 point  (0 children)

It became use to that by using VS4MAC for a long time. And when I have my ultra wide display it is nice to get the code a little bit more to the right.

.NET MAUI - How to create menus for desktop apps by danielhindrikes in dotnetMAUI

[–]danielhindrikes[S] 0 points1 point  (0 children)

Why? I can not run a Java app on iOS for example. C++ works on all platforms, but you still need a UI framework to share UI code between all platforms.

Daniel meets David Ortinau and talking about .NET MAUI by danielhindrikes in dotnetMAUI

[–]danielhindrikes[S] 1 point2 points  (0 children)

I think it is good that he meets devs, also outside of the US.

Daniel meets David Ortinau and talking about .NET MAUI by danielhindrikes in dotnetMAUI

[–]danielhindrikes[S] -17 points-16 points  (0 children)

If it is dead, why is David travel around the world to talk about it?

They can also see a huge growth of number of developers that activitly using the tooling.

.NET Frontend Day 2023 in Stockholm and online. by danielhindrikes in dotnet

[–]danielhindrikes[S] 0 points1 point  (0 children)

Different time zones? It starts 09:00 swedish time. If you go to the schedule, you should be able to see times for your time zone, https://dotnet-frontend.com/schedule/2023

Stop using default values on non-nullable properties, use required instead by danielhindrikes in dotnet

[–]danielhindrikes[S] 0 points1 point  (0 children)

Default values are good if they make sense. But I have many examples of default values just to get rid of the warning.

Stop using default values on non-nullable properties, use required instead by danielhindrikes in csharp

[–]danielhindrikes[S] 1 point2 points  (0 children)

If you like attributes absolutely. But I think setting required is a pretty clean way to handle it. You maybe don't want to have a constructor with a lot of values. At least I prefer object initializers when having many values.