Boost Your XAML Productivity with These Tools - .NET MAUI 101

  Рет қаралды 7,205

Gerald Versluis

Gerald Versluis

Күн бұрын

Пікірлер: 62
@jfversluis
@jfversluis 6 ай бұрын
Really want to get that pixel-perfect design? Use Debug Rainbows 🌈 kzbin.info/www/bejne/d5uyg2dtdt2Gd80
@MrSuxor
@MrSuxor 5 ай бұрын
I appreciate these tools immensely, but I still see a significant need for a XAML preview designer. Sometimes, focusing on the design of a single page or pop-up is crucial. While it's possible to rewrite code to launch directly to that page, it can be frustrating, especially if the page is deep in the navigation hierarchy or only appears under specific conditions, such as error handling. Forcing the app to display such a screen for testing or design purposes can be challenging. Instead of constantly modifying the app to showcase the screen I'm working on, a preview editor would be far more efficient.
@jfversluis
@jfversluis 5 ай бұрын
But what would the previewer do? Which flavor of android? Dark mode? Light mode? Tablet? Phone? Watch? The landscape is so much more complex than it ever was. This mirrors what you are looking at on your device with all its nuances. It’s near impossible to create a drag and drop designer that will work great for all the supported platforms
@MrSuxor
@MrSuxor 5 ай бұрын
Additionally, my ideal tool would include a single simulator capable of testing multiple screen sizes and operating systems simultaneously. This would allow me to see how my app looks and functions across different devices and platforms in real-time. Currently, launching separate simulators and building packages for each test scenario is incredibly time-consuming. An all-in-one simulator would streamline the design and testing process significantly.
@WarBorg
@WarBorg 5 ай бұрын
the Android studio IDE already does this with different previews for all the options you mentioned above when running a kotlin compose app, also xcode does the same for iOS swiftUI apps, but then again they use code to display UI and it's much easier to setup these previews, maybe in the future we could have something like that
@rubendmribeiro
@rubendmribeiro 5 ай бұрын
Great video like always, we need and its really productive is the drag and drop controls, that is what i call being productive. Microsoft removed that probably because of s lot of errors it caused, but we’re in 2024, these kinda of tools MUST exist.
@dsuess
@dsuess 5 ай бұрын
Amazing as always, Gerald! Who needs an XAML designer? Our new team members coming onto the projects. It puts the Visual into Visual Studio.
@jfversluis
@jfversluis 5 ай бұрын
Maybe then we should also make the C# code blocks so we can drag those around? 🙃
@dsuess
@dsuess 5 ай бұрын
@@jfversluis Baby steps my friend, baby steps. Though, I can't deny it, VB3's GUI is what got me into programming
@rotteneggconcept
@rotteneggconcept 5 ай бұрын
Would like to thank You and James Montemagno for the Best Maui Content, Keep up the Great Content, Please do More MVVM examples, especially on Camera and IO related Examples
@jfversluis
@jfversluis 5 ай бұрын
Much appreciated thank you!
@Tymonello
@Tymonello 11 күн бұрын
Great tips!
@pugthegreat9936
@pugthegreat9936 5 ай бұрын
I should use more the Live Visual Tree, never really used it much. Also, life without Hot Reload would be almost impossible. Cheers !
@jfversluis
@jfversluis 5 ай бұрын
Absolutely agree!
@kharraz1713
@kharraz1713 5 ай бұрын
Thanks gerald If i want to developing desktop app learn another specific technology for desktop like WPF or just MAUI is enough?
@maxmannstein
@maxmannstein 5 ай бұрын
Love your videos
@jfversluis
@jfversluis 5 ай бұрын
Appreciate it Max, thank you!
@akshayjain4001
@akshayjain4001 5 ай бұрын
Any of these coming to vs code? Precisely for mac?
@jfversluis
@jfversluis 5 ай бұрын
I don’t think that is planned right now but make sure your feedback is known!
@marcelfischer5139
@marcelfischer5139 5 ай бұрын
Incredible help for a counter project like this. In my project this doesn't work so well.
@jfversluis
@jfversluis 5 ай бұрын
What doesn’t work for you?
@keithsummers1889
@keithsummers1889 5 ай бұрын
Thank you for staying with MAUI -- your audio is greatly improved over last year. You must have upgraded your audio hardware. Excellent move, because I can hear you much better than before.
@jfversluis
@jfversluis 5 ай бұрын
Glad to hear that!
@wolframliermann2883
@wolframliermann2883 5 ай бұрын
Thanks for all the great stuff. Can you make a video on how to create a MAUI Windows app that is signed with a certificate from a key vault such as azure key vault and where the certificate was automatically updated before it expired?
@sheiksulaiman9345
@sheiksulaiman9345 5 ай бұрын
Hi thanks for sharing information
@jfversluis
@jfversluis 5 ай бұрын
You’re very welcome!
@GUIGOL_DEV
@GUIGOL_DEV 5 ай бұрын
Like the hot reload❤
@jfversluis
@jfversluis 5 ай бұрын
Hot reload is amazing!
@michaelrogers6935
@michaelrogers6935 5 ай бұрын
This would be absolutely perfect if only it ran on VSC, since VS for Mac is no more. How hard would it be to port?
@jfversluis
@jfversluis 5 ай бұрын
I don’t think that will come anytime soon unfortunately. That’s the difference between Visual Studio being a full IDE and VS Code a code editor. But definitely make your voice heard. Who knows!
@just-mannn
@just-mannn 5 ай бұрын
Do you plan to integrate OpenGL as it was in Xamarin? And do you plan to add Designer as it was in WinForms and WPF?
@jfversluis
@jfversluis 5 ай бұрын
We don’t have plans for that currently
@earthlingthings
@earthlingthings 4 ай бұрын
Say I have a service layer list static (or even Current Monkey) which I want to bind via mvvm view model. So I put an observableproperty in view model. Bind to that. Update the vm to the services list. Then I have to keep updating the vm ... Every time the service layer changes. Q: can I simply relay the service layer static curmonkey to my view via viewmodel? The xaml doesn't auto update. I'm finding. Even though it's observable property
@earthlingthings
@earthlingthings 4 ай бұрын
Eg servicex has curmonkey static. Vmx has curmonkey [observable property] Vmx also has servicex {get;set;} tried binding {binding servicex.curmonkey} Didn't work. Tried binding {binding vm.curmonkey} works but won't refresh on change
@earthlingthings
@earthlingthings 4 ай бұрын
Ie in vmx {get return servicex.curmonkey;}
@earthlingthings
@earthlingthings 4 ай бұрын
Thx
@Skulard
@Skulard Ай бұрын
a similar visual editor, like WPF has would be even nicer
@jfversluis
@jfversluis Ай бұрын
Unfortunately nothing is planned for that in the near future
@queenstownswords
@queenstownswords 5 ай бұрын
Hey @jfversluis, is there any plans/chance to create an option to add a mobile project (MAUI) with Aspire?
@jfversluis
@jfversluis 5 ай бұрын
We’re working on that!
@wadesmith9110
@wadesmith9110 5 ай бұрын
Any plans for .NET MAUI to support HarmonyOS?
@jfversluis
@jfversluis 5 ай бұрын
Not currently
@afouadr
@afouadr 5 ай бұрын
Also include XAML Styler - Visual Studio Extension
@jfversluis
@jfversluis 5 ай бұрын
That’s definitely a good extension and addition!
@rikudouensof
@rikudouensof 5 ай бұрын
I already know it exist. Actually since Xamarin era. When it came, left and returned. Actually the one on UWP was way more interactive. To be fair UWP only targeted windows PC, Hololens, Xbox and windows phone
@jfversluis
@jfversluis 5 ай бұрын
Haha that’s awesome! You’ve been there for all the iterations! Yeah the cross-platform nature of MAUI definitely makes this tool hard
@mauideveloper
@mauideveloper 5 ай бұрын
we are not getting UI related docs for MAUI :(
@jfversluis
@jfversluis 5 ай бұрын
I’m afraid I’m not sure what you mean
@jewersp
@jewersp 5 ай бұрын
Do you mean documentation for the IDE with regards to MAUI?
@mauideveloper
@mauideveloper 5 ай бұрын
@@jewersp there is no open source UI Plugins for MAUI.
@mauideveloper
@mauideveloper 5 ай бұрын
@@jfversluis there is no open source UI Plugins for MAUI
@jewersp
@jewersp 5 ай бұрын
@@mauideveloper You need to be more specific. No idea what you're talking about. Plugins for what, the IDE? Or for MAUI app? There are plenty of free UI controls out there, if that's what you mean. However, what does that have to do with docs?
@jxndwl
@jxndwl 5 ай бұрын
make project Snoop works for MAUI please.
@jfversluis
@jfversluis 5 ай бұрын
I’m sorry I don’t know what that is
@simonmardine6414
@simonmardine6414 6 ай бұрын
😮 if only it works on rider😂
@jfversluis
@jfversluis 6 ай бұрын
Up to them to implement similar features I suppose!
@simonmardine6414
@simonmardine6414 6 ай бұрын
@@jfversluis or i install visual studio on my mac 😉
Shortcut Keys on Desktop with KeyboardAccelerators - .NET MAUI 101
7:50
Extract Text from Images and Pictures with OCR in .NET MAUI
19:33
Gerald Versluis
Рет қаралды 6 М.
Непосредственно Каха: сумка
0:53
К-Media
Рет қаралды 12 МЛН
.NET MAUI Signature Pad Complete Guide
15:06
James Montemagno
Рет қаралды 8 М.
Start Your New .NET MAUI App with These Amazing Templates!
15:06
Gerald Versluis
Рет қаралды 25 М.
Styling, Theming and Dark Mode - .NET MAUI Tutorial Step-by-Step
18:01
Gerald Versluis
Рет қаралды 12 М.
Use Stacks and Flex Layouts (4 of 18) | Building Apps with XAML and .NET MAUI
14:04
Microsoft Visual Studio
Рет қаралды 2,2 М.
.NET MAUI using Blazor Syntax with BlazorBindings.Maui - NO XAML!
14:12
Adding Fingerprint Or Face Recognition To Your .NET MAUI App
18:00
Gerald Versluis
Рет қаралды 9 М.
*Next-door 10x Software Engineer* [FULL]
4:50
Programmers are also human
Рет қаралды 874 М.