May 2019
Intermediate to advanced
504 pages
11h 50m
English
Behaviors and effects, when used together, can create eloquent solutions to common native element requirements without having to resort to custom controls and renderers. Let's see how we can do this:
public static class HtmlText { public static readonly BindableProperty IsHtmlProperty = BindableProperty.CreateAttached("IsHtml", typeof(bool), typeof(HtmlText), false, propertyChanged: OnHtmlPropertyChanged); private static void OnHtmlPropertyChanged( BindableObject bindable, object oldValue, object newValue) { var view = bindable as View; if (view == nullRead now
Unlock full access