The CheckBox control has inconsistent padding/margin on iOS and UWP.
BackgroundColor to Color.SilverXAML Content:
<StackLayout VerticalOptions="Center">
<StackLayout Orientation="Horizontal" HorizontalOptions="Center">
<CheckBox BackgroundColor="Silver"/>
<Label Text="CheckBox" VerticalOptions="Center" />
</StackLayout>
</StackLayout>
Sample Repo:
https://github.com/hnabbasi/XamarinFormsIssue7048
CheckBox appears in the middle of the control, with less padding preferably.
CheckBox appears slightly left of the middle of the control.

Would it be possible to provide a small sample project that shows this problem?
Sure. Will add one today
Another part to this issue is that the spacing is inconsistent across platforms, so in order for things to look ok I've had to tinker with the margins on a per platform basis.
@MitchBomcanhao can you attach a repro as well or expand on what differences you've had to apply?
@jfversluis @PureWeen … Done. Added repo that shows both issues.
I'm guessing this is the problem on UWP:
https://github.com/xamarin/Xamarin.Forms/blob/d56942c5bee0a7c56255febc8bbcc6bc33d5e1cb/Xamarin.Forms.Platform.UAP/FormsCheckBoxStyle.xaml#L17
@samhouts , i am still facing the issue in v4.4. Please check with iOS iPhone 11 13.3 version
I have an issue on UWP at least where the checkbox will not correctly center in its container. This appears to be prominent when the checkbox has no text. The beige are is the container, a syncfusion button control but the same behavior is experienced with a stacklayout. You can see the checkbox is not centered.

For UWP, set these in a custom renderer (in OnElementChanged()):
Control.Padding = new Windows.UI.Xaml.Thickness(0);
Control.MinWidth = 0;
Control.HorizontalAlignment = Windows.UI.Xaml.HorizontalAlignment.Center;
This fixes the issue for me and the checkbox will be centered.
My fix for iOS. Set this in a custom renderer (in OnElementPropertyChanged()) :
Control.HorizontalAlignment = UIControlContentHorizontalAlignment.Center;
Control.ContentEdgeInsets = new UIEdgeInsets(0, 7, 0, 7); (or new UIEdgeInsets(0, 0, 0,0))
Control.HorizontalAlignment will align it horizontal but you'll get some kind of padding/margin issue.
This seems to be caused by the ContentEdgeInsets beeing set to (0, 7, 0, 0)...