When using SegmentedControl on a xaml page, rendering is correct on all platforms (iOS/Android). If I dynamically create a control and add it to a layout:
var seg = new SegmentedControl{ ... }
stackLayout.Children.Add(seg);
It does not render correctly on Android, but iOS is ok.
