Diego Lidovero

Results 1 comments of Diego Lidovero

Change the method UpdateEnabled inside FloatingActionButtonRenderer.cs to this one: private void UpdateEnabled() { this.Control.Enabled = this.Element.IsEnabled; if (this.Control.Enabled == false) { this.Control.BackgroundTintList = ColorStateList.ValueOf(this.Element.DisabledColor.ToAndroid()); } else { this.Control.BackgroundTintList = ColorStateList.ValueOf(this.Element.NormalColor.ToAndroid());...