JohnHDev
JohnHDev
@pictos can I confirm if/when this is done it will be a Behaviour, not an effect, right? We have started investigating what is needed to migrate to .NET Maui and...
@PureWeen Thanks, yes that should work, I'll take another look at this shortly.
@rachelkang apologies for the delay, here you go. In the page constructor add the following code. You will see that the tap gesture on the frames don't work at all....
Further info, swapping Frame for Border, the tap gestures work but you can't 'see' the border view. [EDIT] Ok to see the background of the border view you must add...
Thanks Brad, I found a similar answer elsewhere too, so my solution was to remove net6.0 from the target frameworks. All the others are implemented. However, My Maui library projects...
@devmikew I agree, view models should not have references to UI components. Mine don't, they just happen to live in the same project as the views. They don't have to,...
Not sure I follow your suggestion, concrete implementations of ICalendarRepository would be to access iOS EKEvents, Android calendar, Windows Appointments etc in a generic way. It isn't business logic, but...
I am talking about mocking ICalendarRepository in a test, it has nothing to do with concrete implementations. The issue is the Maui project cannot be referenced from the unit test...
@VladislavAntonyuk thanks, I have updated my project to match (including removing nunit and adding xunit) but Im not seeing any difference. What is the magic ingredient with that?
[UnitTestExample.zip](https://github.com/dotnet/maui/files/7610541/UnitTestExample.zip) Here is a very simple example, new Maui solution, added a MainPageModel, added a unit test project, added reference to the maui project in the unit test project, it...