Recent Posts

Xamarin.Forms Compiled Bindings FAQ

3 minute read

We recently announced compiled bindings for Xamarin.Forms. Bindings aren’t cost efficient because they are resolved at runtime using reflection. In some scen...

Creating a Hyperlink in Xamarin.Forms

2 minute read

Creating a hyperlink in a Xamarin.Forms app has traditionally involved writing an effect or custom renderer, and having to provide platforms implementations ...

Binding a Collection to a FlexLayout IV

1 minute read

Previously, I explained how to extend the ExtendedFlexLayout class so that it can bind to collections that change at runtime, with the changes being reflecte...

Binding a Collection to a FlexLayout III

4 minute read

Previously, I explained how to extend the ExtendedFlexLayout class so that it allows a DataTemplateSelector to choose a DataTemplate at runtime. This enables...

Binding a FlexLayout to a Collection II

3 minute read

Previously, I explained how to extend the FlexLayout class with ItemsSource and ItemTemplate properties, so that it can bind to data stored in a collection. ...