Posts by Marlon Ribeiro • 51 points
4 posts
-
0
votes1
answer152
viewsA: Doubt with Dependencyservice Xamarin c#
Colon. Iconfig interface must be in the main project (Portable), not in the Android Project You have to put a note in the Config class, then it will look like this: [assembly:…
-
0
votes1
answer125
viewsA: Sketch Component for Xamarin Forms
Take a look at this component: https://components.xamarin.com/view/signature-pad You can use a Signaturepad and change the Backgroundimage property.…
-
1
votes2
answers1230
viewsA: Back button on Xamarin Cross Platform
On any Page, you can overwrite this method protected override bool OnBackButtonPressed() { return base.OnBackButtonPressed(); }
-
4
votes1
answer236
viewsA: Xamarin - Dependencyservice NULL
If you are using Xamarin Forms, you probably need to implement the Iconfig interface on each platform. For example, in the Meudb.Droid project, add the following class: [assembly:…