Book Image

Cross-platform UI Development with Xamarin.Forms

By : Paul Johnson
Book Image

Cross-platform UI Development with Xamarin.Forms

By: Paul Johnson

Overview of this book

Table of Contents (22 chapters)
Cross-platform UI Development with Xamarin.Forms
Credits
About the Author
Acknowledgments
About the Reviewers
www.PacktPub.com
Preface
Free Chapter
1
In the Beginning…
Index

What is Xamarin Forms Labs?


When Xamarin Forms first came out, it was only intended as a means for abstraction of the user interface that allows you a simplified way to create an app. In that respect, it is great. The problem though is that when you start on that track, the development community generally wants more.

Xamarin is not concerned with this because Xamarin Forms is purely for the UI—anything else is outside the remit of the project. Xamarin Forms Labs came about to fill the parts of the UI missed by the main project.

Let's take CheckBox as an example.

Installing Xamarin Forms Labs in your project

Xamarin Forms Labs is available via NuGet. Create your application as you would normally.

Perform the following steps:

  1. Select the PCL at the top and click on the context menu icon.

  2. From the menu, select Add | Add NuGet Packages….

  3. A new window will appear. Type XLabs Forms in the search box:

  4. Tick the checkbox and click on Add Package.

This will install the library in your project and give you the...