Great work! Your video came just in time! Currently working on a Xamarin project and sure enough, I will add this animation soon. As always, thank you for your work!
Hi James! Commenting here, since this is the latest video of the Playlist, Any chance you could show us how to Unit Test Xamarin Forms applications? I've worked through Microsoft's Learning Paths and read the documentation but, much content on Unit Test with MVVM &Co is kinda difficult to find. You explain everything so well, I think it would be a great finishing touch for such great content :)
How do you get a reference to an individual DataTemplate in a collection or list view in order to animate that specific item? For example If I click a button on one element, I want THAT element's image to fade in.
Do you mean like fontawesome? Not everyone wants a very large font file included in their app as they may not use it and the team worked to simplify adding fonts to a single line of code
@@JamesMontemagno yes, but I do not know which icon fonts exactly do android studio uses, but they have a lot of them by default in their platform. I understand your point, but what about adding them to the framework, but if the developer does not use it or call any font, then the progran should not include it in the .ipa file
I like that BaseViewModel from the MVVM Helper class BUT when I use that in place of ObservableObject, my [ObservableProperty] tags throw red squigglies in my viewmodel saying that my class does not inherit from ObservableObject... Can I not use this BaseViewModel if I make use of [ObservableProperty] in my viewmodel?
use [ObservableObject] attribute maybe ? My guess is this ViewModel already has all the needed generated code and so it don't need to inherit ObservableObject.
Why is Xamarin still a thing? I thought .NET MAUI was a Xamarin replacement. For example, why is there a Xamarin Shell and a MAUI shell? Could Microsoft make this a little more obtuse?
.NET MAUI is the evolution of Xamarin/Xamarin.Forms. Many of the concepts apply and the code is the same and existing apps will be able to upgrade. That is why I mark the videos for both. .NET MAUI will GA later this year.
@@JamesMontemagnoMontemagno Understood and you do a great job. The frustration for me is when I have to search for some doc on how to do something and I get hits on Xamarin but nothing on MAUI. So I don't know if I'm building something obsolete from the get go or not.
@@JamesMontemagno I saw you restarting after each change hence the question. I have been working with Flutter. I want to give Maui a go. Thank you for the video.
The api is nice, but I've always felt like Xamarin Forms animations don't quite achieve the silky smoothness of native animations. Feels more like 30fps than 60fps.
I would put it in grid and overlay it on top of controls similar to github.com/dotnet-presentations/dotnet-maui-workshop/tree/main/Part%202%20-%20MVVM#build-the-monkeys-user-interface
I believe based on architecture there were some fixes that were being done to ensure compat. checkout docs.microsoft.com/en-us/answers/questions/634649/android-emulator-not-launching-on-windows-11.html
Great work!
Your video came just in time!
Currently working on a Xamarin project and sure enough, I will add this animation soon.
As always, thank you for your work!
thank you so much for this, james. made my day.
Found you from your LI Learning tutorial and found out you had all these other youtube tutorials. Very helpful! Thank you!
Whoa nice! Was it the beginner videos?
@@JamesMontemagno Yeah the beginner ones.
Awesome, was looking for explanation of the Animation call (planning to code a skeleton loader). Thanks for the info.
Thank you James, this is awesome animation.
Thanks James!!
Nice!
Hi James! Commenting here, since this is the latest video of the Playlist,
Any chance you could show us how to Unit Test Xamarin Forms applications?
I've worked through Microsoft's Learning Paths and read the documentation but, much content on Unit Test with MVVM &Co is kinda difficult to find. You explain everything so well, I think it would be a great finishing touch for such great content :)
Thanks James.
How do you get a reference to an individual DataTemplate in a collection or list view in order to animate that specific item? For example If I click a button on one element, I want THAT element's image to fade in.
James can you mimic the animation of outlook. when deleting
great video, thanks a lot
Great video, thanks for sharing.
Why don't the maui team include by defaults icon font into maui as google does in android studio?
Do you mean like fontawesome? Not everyone wants a very large font file included in their app as they may not use it and the team worked to simplify adding fonts to a single line of code
@@JamesMontemagno + it takes you only 5 minutes to include any iconset
@@JamesMontemagno yes, but I do not know which icon fonts exactly do android studio uses, but they have a lot of them by default in their platform.
I understand your point, but what about adding them to the framework, but if the developer does not use it or call any font, then the progran should not include it in the .ipa file
Awesome is James ☺️
Don't you need to check your on the main thread to do all of these?
In general - when do I need to 'invoke on the main thread' and when do I not?
awesome just what i was looking for i want to make a knob how many hours went into net maui theres alot in docs
How for me, for so simple animation how rotation you need to write a lot of code. Why can't we use only XAML?
Well done man. Can you give examples of those extension methods? Where you pass views into view models
Checkout github.com/jsuarezruiz/Xamanimation as it has some good examples of how to do xaml based animations
I like that BaseViewModel from the MVVM Helper class BUT when I use that in place of ObservableObject, my [ObservableProperty] tags throw red squigglies in my viewmodel saying that my class does not inherit from ObservableObject... Can I not use this BaseViewModel if I make use of [ObservableProperty] in my viewmodel?
use [ObservableObject] attribute maybe ? My guess is this ViewModel already has all the needed generated code and so it don't need to inherit ObservableObject.
what about animation of width and height?
hello , i tried this , thanks for that . Sth however didnt work for me , animating items in a collection view , how is that possible ?
Why is Xamarin still a thing? I thought .NET MAUI was a Xamarin replacement. For example, why is there a Xamarin Shell and a MAUI shell? Could Microsoft make this a little more obtuse?
.NET MAUI is the evolution of Xamarin/Xamarin.Forms. Many of the concepts apply and the code is the same and existing apps will be able to upgrade. That is why I mark the videos for both. .NET MAUI will GA later this year.
@@JamesMontemagnoMontemagno Understood and you do a great job. The frustration for me is when I have to search for some doc on how to do something and I get hits on Xamarin but nothing on MAUI. So I don't know if I'm building something obsolete from the get go or not.
This will work from
View model?
Hi James,
How to create circular radial bar in .net maui..
Could u help me..
Thxs in advance
Is Hot Reload not available for .Net Maui?
Should be, it is working for me. I now that if you want it to work currently with Windows you need the UWP workload in Visual Studio 2022
@@JamesMontemagno I saw you restarting after each change hence the question. I have been working with Flutter. I want to give Maui a go. Thank you for the video.
The api is nice, but I've always felt like Xamarin Forms animations don't quite achieve the silky smoothness of native animations. Feels more like 30fps than 60fps.
Great video ! Why not aborting the animation with `rotation` reference?
How to put it in the middle of the screen ( over the other controls )
I would put it in grid and overlay it on top of controls similar to github.com/dotnet-presentations/dotnet-maui-workshop/tree/main/Part%202%20-%20MVVM#build-the-monkeys-user-interface
Nice 😁
Sadly this does not work for a ToolbarItem in Xamarin.Forms
request you to please make a video about publishing the app. Like publishing the app to the Google Play.
Nice video ! Hey James, can you create a marquee animation with xamarin ? :P
You could do a translate on the y axis
Thank you
Hello why in my windows 11 don't start android emulator ?
I believe based on architecture there were some fixes that were being done to ensure compat. checkout docs.microsoft.com/en-us/answers/questions/634649/android-emulator-not-launching-on-windows-11.html
@@JamesMontemagno Thank you very much Sir
⭐⭐⭐⭐⭐