Error with lastest version Xamarin.Forms Button.CornerRadius
Error with lastest version Xamarin.Forms Button.CornerRadius [Update: Code worked on Android 8.0 simulator] I keep receive error No CornerRadius property found for the type Button My code behind public TabbedPage1 () { InitializeComponent(); this.FindByName<Button>("runButton").CornerRadius = screenX / 5; } My xaml <?xml version="1.0" encoding="utf-8" ?> <TabbedPage xmlns="http://xamarin.com/schemas/2014/forms" xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" x:Class="FuckThis.TabbedPage1"> <ContentPage x:Name="Page1"> <RelativeLayout> <Button xmlns:android="http://schemas.android.com/apk/res/android" x:Name="runButton" Text="Run" RelativeLayout.WidthConstraint="{ConstraintExpression Type=RelativeToParent,Propert...