I tested the similar code on my side without any error . What is the version of XF in your project ? By the way, you could try to use Custom Renderer to add touch events on a ScrollView in iOS .
Hello everyone! I am quiet new to xamarin forms and I am trying to use the new FlyoutPage. I have set my Detail and Flyout pages.. now I want to customize the bar (with the hamburger menu). I need to change colors and add buttons etc.. Is there a way to do that with xamarin forms (without using shell..) ? Or is there at…
How do you show the dialog of the runtime permission? With the code below? var task = Application.Current?.MainPage?.DisplayAlert(title, question, positive, negative); If yes, we could do that with the custom renderer to reset the view of the dialog.
Thanks. So, I implemented your suggestion. Unfortunately, it still doesn't work. When I drag one of my image items around on the screen it drags for just a moment and stops the same as before. I created the custom renderer. I confirmed that my customer renderer is getting called to render the image items I'm moving around…
Did you use the Control.LoadUrl(uri) method to load the url? The uri can only be updated in the native platform. Try to override the OnElementPropertyChanged method to update the Uri in the custom renderer class. Check the code: Custom WebView class public class CustomWebView : WebView{ public static readonly…
i know there are custom renderers for buttons and such but I cant find anything about how to remove caps from tabviews. and Im looking for a solution to remove all caps from all text in all things. I've tried adding items to the styles.xml and it doesn't do anything.
There may be some limitations on WebView , you can try to use SFSafariViewController to replace WebView to show the website (within custom renderer ) . And Consider raising issue on the spotify site for better support (The post was 1 year ago ,maybe something has updated).
Have you checked the official document Customizing a Map Pin ? I tested the sample Xamarin.Forms - Map Custom Renderer, and it works properly. You can check it first. Xamarin forums are migrating to a new home on Microsoft Q&A! We invite you to post new questions in the Xamarin forums’ new home on Microsoft Q&A! For more…