I am trying to use Grial UIkit with my existing Xamarin forms App, but I am facing some issues, can anyone tell me what steps I need to follow to use this kit with an existing project. Currently I am following this link
https://github.com/UXDivers/Grial-UI-Kit-Support/wiki/Adding-Grial-on-existing-project:-Setting-up-Grial-theme-required-files#assemblyinfocs
But I am getting this error
Field 'Xamarin.Forms.ContentPage.ContentProperty' not found.
I resolved this issue. This issue was coming because of the different versions of xamarin forms used in my project and Grial UI kit.
Related
I have 2 questions regarding the OxyPlot library.
So I'm well aware that OxyPlot is supported for Xamarin.Forms, Xamarin.Forms.Android, Xamarin.Forms.iOS, and Xamarin.Forms.Mac. However, I was wondering if this library supports Xamarin Forms WPF. I know it works on WPF applications, but not in Xamarin Forms WPF. I checked in NuGet Package store, and none was found.
I get this error regarding running my Xamarin Forms project. I am creating a Xamarin Forms WPF project that will display a chart. But I keep getting this error.
Does anybody know why I'm getting this error? From my understanding, you need to initialize it. For example, for Android projects, you use
OxyPlot.Xamarin.Forms.Platform.Android.PlotViewRenderer.Init();.
But for Xamarin Forms WPF, there is no initialization function. Can anyone help me in regards to this problem? Thank you so much.
I tried initializing, but there's no initialize function for Xamarin Forms WPF. For example:
• iOS:
OxyPlot.Xamarin.Forms.Platform.iOS.PlotViewRenderer.Init();
• Android:
OxyPlot.Xamarin.Forms.Platform.Android.PlotViewRenderer.Init();
• Universal Windows:
OxyPlot.Xamarin.Forms.Platform.UWP.PlotViewRenderer.Init();
• Windows Phone:
OxyPlot.Xamarin.Forms.Platform.WP8.PlotViewRenderer.Init();
• WPF: ???
I'm trying to understand the root of this error:
Package com.opennetcf.extensions.pcl is not compatible with netstandard1.5
I get it when I try to update xamarin essentials from nuget in my xamarin forms project. If I don't update that package, the project works fine. This is what I don't understand. If the PCL is not compatilble with .net standard 1.5, why does the project currently work when I'm using both. Why do I only see this error when I try to update xamarin essentials?
I've been reading a lot of articles on PCL support but I'm not sure what I need to do in this case. My main concern is updating xamarin essentials.
Any thoughts?
been trying to play with the new stuff that will soon coming out from xamarin form
I create a new Prism xamarin app
I upgrade the nuget packages to point to xamarin 3.5 or 4.0
but I cannot get the solution to run.
It just hangs!!
It works when I do the same thing with a standard xamarin form template
I know its just preview but I would like to know if somebody has tried to compile and run any app using prism xamarin and the preview xam forms.
many thanks
As far as I am aware there should not be any issues with Prism when targeting Xamarin Forms 3.5+.
That said if you're wanting to target one of the pre-releases I would suggest either installing the current preview on NuGet which targets 4.0-pre1, or the latest CI build which targets 3.5-pre2 and has a number of great new features including a more robust API for IContainerRegistry as well as support for Tuples in INavigationService.
I need to connect google drive with my xamarin forms application.
I have tried this code==>https://xamarindev.blog/2017/03/22/google-drive-api-with-xamarin-forms/
I take a reference project from github through this link https://github.com/Dineshbala1/GoogleDriveAPI-XamarinForms
In the above link the code is related to "Shared Project" and I'm work with xamarin forms ".Net standard".
So please guide me, how could I apply google drive API in my xamarin forms project?
Ask me if anybody need further clarification.
You must know that Xamarin Components are no longer supported in Visual Studio, and should be replaced by NuGet packages.
You can follow the instructions to manually remove component references from your projects from this documentation.
For more info using Xamarin forms:
Xamarin Documentation
Xamarin.Google.Drive.Api.Android 1.2.12
I am trying to add MVVMLight to a Xamarin Forms app. The previous app in which I added MVVMLight it did some scaffolding and added BaseViewModel,ViewModelLocator etc. which is not visible when I am adding it now. I have also tried adding MVVMLight
I am using Xamarin Forms Version="3.0.0.482510" ,MVVMLight V5.4.1
Can someone help ?