How can we implement mvvm architecture in xamarin android and ios? - mvvm

My goal is to implement MVVM architecture for Xamarin Android and iOS, but I have not yet found a suitable solution. Could someone please assist me?
I have created view models implementing INotifyPropertyChanged interface. However, I am unable to apply bindincontext.

Related

How to integrate EVFaceTracker(face tracking ios framework) to a Flutter application?

https://github.com/evermeer/EVFaceTracker
I need some immediate help as i am very stuck...

Is it possible to use Flutter components in another web application?

I was wondering if it's possible to run Flutter application components (such as building a specific screen) with other web apps. And if there is a good resource to learn how to do this.
We have a GWT web-app that we have been considering upgrading some components to Flutter, but I have not seen much information online on how to implement this.
I can't see documentation of this process online though. I have seen that you can insert Flutter into existing Android/IOS apps but I don't know how compatible this is with GWT.

Apples RealityKit Framework in Xamarin.iOS - LiDar scanning

Okay, I am a Xamarin developer and have been doing some R+D on how I can get a LiDar scanning module up an running for my latest project. In my research I have found Plenty of Swift related projects that I can use in creating a solution, but they all require for me to have RealityKit, a framework currently exclusive to Swift. The only blocker I have is getting this RealityKit into Xamarin C#, Anybody have any ideas on how or any links that I can follow to get this sorted.
Thanks a lot !

Does Flutter have a good way to share code between mobile and web applications?

I'm looking for a good tool to develop to Web and Mobile.
A friend of mine recommended me to learn NativeScript/Angular because with that tool is possible to write the services, models, and controllers only one time and create specific views for Mobile and Web platform, sharing almost 100% the business logic code.
But I think that native script is not so hyped as flutter and maybe flutter could be more used in the next days, so I'm searching for this type of tutorial (sharing logic between Mobile and Web) in a flutter, but I'm not sure if this is really possible.
I saw something about BLOC pattern, but I am not sure if this is the correct solution for this type of project, or even if it is possible to write logic code only one time and specific "views" for Mobile and Web in a flutter.
Can anybody help me with this issue?
Thanks in advance (and sorry about my English, I'm not fluent yet)
That's the whole propaganda of flutter. The framework is made to write one code and run everywhere (android, ios, web, desktop). So you definitely are on the right path.
Unfortunately flutter web is a bit unstable right now and maybe you can face some difficulty.

Which architecture pattern is suitable for Xamarin android development?

I'm new in Xamarin development. can you suggest which architecture pattern use for development. just like MVVM,MVP,MVC, etc.
I will now go with MVP considering the asynchronous nature of mobile applications. Check a discussion here https://blog.kloud.com.au/2018/01/17/xamarin-application-architecture/
Xamarin.Forms was designed with MVVM in mind. As for the Platform specific MVVM or passive view both work well.