I'm completely new to xamarin.forms.
I used XLabs library to add checkboxes in my PCL project (Xamarin Forms).
When I run my app UWP ARM in Debug mode there's no error, but when I run the app in Release mode the checkboxes ARE never shown.
Is there any setting that I need to configure?
As @hugo said that the XLabs library is no longer maintained. It may not work with newer versions of Xamarin.Forms. For your requirement, you could use
Switchcontrol to replacing checkbox or use custom checkbox control. The following code implemented a simple checkbox. For more please refer to Introduction to Custom Renderers.CustomCheckBox.cs
CustomCheckBoxRenderer.cs
Usage